Ontology Version: 2.2.0

cacontology-multi:JurisdictionCoordinationShape leaf node


URI

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

Label

Jurisdiction Coordination Shape

Description

Validation shape for jurisdiction coordination instances.

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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-multi:JurisdictionCoordinationShape a sh:NodeShape ;
    rdfs:label "Jurisdiction Coordination Shape"@en ;
    rdfs:comment "Validation shape for jurisdiction coordination instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "information_sharing" "resource_sharing" "joint_operations" "parallel_investigations" "unified_command" "liaison_coordination" ) ;
            sh:maxCount 1 ;
            sh:message "Jurisdiction coordination must specify coordination type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:coordinationType ],
        [ sh:datatype xsd:string ;
            sh:in ( "formal_mou" "informal_agreement" "statutory_authority" "task_force_charter" "operational_protocol" "ad_hoc_arrangement" ) ;
            sh:maxCount 1 ;
            sh:message "Jurisdiction coordination must specify coordination agreement from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:coordinationAgreement ],
        [ sh:datatype xsd:string ;
            sh:in ( "secure_channels" "encrypted_communication" "liaison_officers" "joint_command_center" "regular_briefings" "real_time_updates" ) ;
            sh:maxCount 1 ;
            sh:message "Jurisdiction coordination must specify communication protocol from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:communicationProtocol ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Jurisdiction coordination must specify if data sharing is enabled."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:dataSharing ] ;
    sh:targetClass cacontology-multi:JurisdictionCoordination .