Ontology Version: 2.2.0

cacontology-multi:CommunicationProtocolShape leaf node


URI

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

Label

Communication Protocol Shape

Description

Validation shape for communication protocol 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:CommunicationProtocolShape a sh:NodeShape ;
    rdfs:label "Communication Protocol Shape"@en ;
    rdfs:comment "Validation shape for communication protocol instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "formal_reporting" "informal_updates" "emergency_notification" "routine_briefing" "secure_messaging" "video_conference" ) ;
            sh:maxCount 1 ;
            sh:message "Communication protocol must specify protocol type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:protocolType ],
        [ sh:datatype xsd:string ;
            sh:in ( "real_time" "daily" "weekly" "bi_weekly" "monthly" "as_needed" "emergency_only" ) ;
            sh:maxCount 1 ;
            sh:message "Communication protocol must specify frequency from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:frequency ],
        [ sh:datatype xsd:string ;
            sh:in ( "open" "restricted" "confidential" "secret" "top_secret" "compartmented" ) ;
            sh:maxCount 1 ;
            sh:message "Communication protocol must specify security level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:securityLevel ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 50 ;
            sh:message "Communication protocol must have between 2 and 50 participants."@en ;
            sh:minCount 1 ;
            sh:minInclusive 2 ;
            sh:path cacontology-multi:participantCount ] ;
    sh:targetClass cacontology-multi:CommunicationProtocol .