https://cacontology.projectvic.org/investigation-coordination#IntelligenceSharingShape
Validation shape for intelligence sharing instances with gUFO integration.
Instances of cacontology-coord:IntelligenceSharing can have the following properties:
@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@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-coord:IntelligenceSharingShape a sh:NodeShape ;
rdfs:label "Intelligence Sharing Shape"@en ;
rdfs:comment "Validation shape for intelligence sharing instances with gUFO integration."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "tactical" "strategic" "operational" "technical" "threat_assessment" "pattern_analysis" ) ;
sh:maxCount 1 ;
sh:message "Intelligence sharing must specify intelligence type from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-coord: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-coord: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-coord:informationAccuracy ],
[ sh:datatype xsd:string ;
sh:in ( "low" "moderate" "high" "critical" "exceptional" ) ;
sh:maxCount 1 ;
sh:message "Intelligence value level must be from allowed list (gUFO quality aspect)"@en ;
sh:path cacontology-coord:hasIntelligenceValue ],
[ sh:datatype xsd:double ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "Actionability score must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
sh:minInclusive 0.0 ;
sh:path cacontology-coord:hasActionability ] ;
sh:targetClass cacontology-coord:IntelligenceSharing .