https://cacontology.projectvic.org/multi-jurisdiction#IntelligenceSharingShape
Validation shape for intelligence sharing instances.
@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:IntelligenceSharingShape a sh:NodeShape ;
rdfs:label "Intelligence Sharing Shape"@en ;
rdfs:comment "Validation shape for intelligence sharing instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "tactical_intelligence" "strategic_intelligence" "operational_intelligence" "threat_intelligence" "criminal_intelligence" "technical_intelligence" ) ;
sh:maxCount 1 ;
sh:message "Intelligence sharing must specify intelligence type from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-multi:intelligenceType ],
[ sh:datatype xsd:string ;
sh:in ( "reliable" "usually_reliable" "fairly_reliable" "not_usually_reliable" "unreliable" "unknown" ) ;
sh:maxCount 1 ;
sh:message "Intelligence sharing must specify source reliability from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-multi:sourceReliability ],
[ sh:datatype xsd:string ;
sh:in ( "confirmed" "probably_true" "possibly_true" "doubtfully_true" "improbable" "cannot_be_judged" ) ;
sh:maxCount 1 ;
sh:message "Intelligence sharing must specify information accuracy from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-multi:informationAccuracy ] ;
sh:targetClass cacontology-multi:IntelligenceSharing .