https://cacontology.projectvic.org/multi-jurisdiction#CriticalInformationSharingRule
gUFO business rule: Critical intelligence requires high security and real-time sharing.
Instances of cacontology-multi:InformationSharing can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-multi:CriticalInformationSharingRule a sh:NodeShape ;
rdfs:label "Critical Information Sharing Rule"@en ;
rdfs:comment "gUFO business rule: Critical intelligence requires high security and real-time sharing."@en ;
sh:sparql [ sh:message "Critical intelligence sharing must have high security level and timely delivery (gUFO business rule)."@en ;
sh:select """
SELECT $this
WHERE {
$this cacontology-multi:hasIntelligenceValue "critical" .
$this cacontology-multi:hasSecurityLevel ?security .
$this cacontology-multi:hasTimeliness ?timeliness .
FILTER (?security IN ("low", "moderate"))
FILTER (?timeliness IN ("delayed", "slow"))
}
""" ] ;
sh:targetClass cacontology-multi:InformationSharing .