Ontology Version: 2.2.0

cacontology-multi:MultiJurisdictionalOperationShape leaf node


URI

https://cacontology.projectvic.org/multi-jurisdiction#MultiJurisdictionalOperationShape

Label

Multi-Jurisdictional Operation Shape

Description

Enhanced validation shape for multi-jurisdictional operation instances with gUFO quality aspects.

Shape Properties

Instances of cacontology-multi:MultiJurisdictionalOperation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-multi:MultiJurisdictionalOperation
1 1 xsd:string
1 xsd:string
1 xsd:string
1 xsd:string
1 xsd:double
1 xsd:double
cacontology-multi:jurisdictionCount 1 1 xsd:nonNegativeInteger
1 1 xsd:string
cacontology-multi:operationDuration 0 1 xsd:decimal
1 1 xsd:string
0 1 xsd:dateTime
0 1 xsd:dateTime

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-multi:MultiJurisdictionalOperationShape a sh:NodeShape ;
    rdfs:label "Multi-Jurisdictional Operation Shape"@en ;
    rdfs:comment "Enhanced validation shape for multi-jurisdictional operation instances with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "joint_investigation" "task_force_operation" "cross_border_coordination" "federal_state_cooperation" "international_cooperation" "multi_agency_response" ) ;
            sh:maxCount 1 ;
            sh:message "Multi-jurisdictional operation must specify operation type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:operationType ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 50 ;
            sh:message "Multi-jurisdictional operation must involve between 2 and 50 jurisdictions."@en ;
            sh:minCount 1 ;
            sh:minInclusive 2 ;
            sh:path cacontology-multi:jurisdictionCount ],
        [ sh:datatype xsd:string ;
            sh:in ( "federal" "state" "local" "international" "task_force" "joint_command" ) ;
            sh:maxCount 1 ;
            sh:message "Multi-jurisdictional operation must specify lead agency type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:leadAgency ],
        [ sh:datatype xsd:string ;
            sh:in ( "minimal" "basic" "standard" "enhanced" "comprehensive" "full_integration" ) ;
            sh:maxCount 1 ;
            sh:message "Multi-jurisdictional operation must specify coordination level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:coordinationLevel ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 1095.0 ;
            sh:message "Operation duration must be between 1 and 1095 days (3 years)."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1.0 ;
            sh:path cacontology-multi:operationDuration ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Multi-jurisdictional operation may have a start time."@en ;
            sh:minCount 0 ;
            sh:path uco-core:startTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Multi-jurisdictional operation may have an end time."@en ;
            sh:minCount 0 ;
            sh:path uco-core:endTime ],
        [ sh:datatype xsd:string ;
            sh:in ( "ineffective" "limited" "moderate" "effective" "highly_effective" ) ;
            sh:maxCount 1 ;
            sh:message "Coordination effectiveness must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasCoordinationEffectiveness ],
        [ sh:datatype xsd:string ;
            sh:in ( "simple" "moderate" "complex" "highly_complex" "extremely_complex" ) ;
            sh:maxCount 1 ;
            sh:message "Complexity level must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasComplexityLevel ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Success rate must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-multi:hasSuccessRate ],
        [ sh:datatype xsd:string ;
            sh:in ( "minimal" "low" "moderate" "high" "intensive" ) ;
            sh:maxCount 1 ;
            sh:message "Coordination intensity must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasCoordinationIntensity ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Unification level must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-multi:hasUnificationLevel ] ;
    sh:targetClass cacontology-multi:MultiJurisdictionalOperation .