https://cacontology.projectvic.org/tactical#OperationBriefingShape
Validation shape for operation briefing instances.
@prefix cacontology-tactical: <https://cacontology.projectvic.org/tactical#> .
@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-tactical:OperationBriefingShape a sh:NodeShape ;
rdfs:label "Operation Briefing Shape"@en ;
rdfs:comment "Validation shape for operation briefing instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "pre_operation" "tactical_briefing" "intelligence_briefing" "safety_briefing" "post_operation" "emergency_briefing" ) ;
sh:maxCount 1 ;
sh:message "Operation briefing must specify briefing type from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-tactical:briefingType ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 8.0 ;
sh:message "Briefing duration must be between 0.25 and 8 hours."@en ;
sh:minCount 1 ;
sh:minInclusive 0.25 ;
sh:path cacontology-tactical:briefingDuration ],
[ sh:datatype xsd:nonNegativeInteger ;
sh:maxCount 1 ;
sh:maxInclusive 100 ;
sh:message "Operation briefing must have between 2 and 100 attendees."@en ;
sh:minCount 1 ;
sh:minInclusive 2 ;
sh:path cacontology-tactical:attendeeCount ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Operation briefing must specify briefing date."@en ;
sh:minCount 1 ;
sh:path cacontology-tactical:briefingDate ] ;
sh:targetClass cacontology-tactical:OperationBriefing .