https://cacontology.projectvic.org/investigation-coordination#LiaisonAuthorityAlignmentBusinessRule
Instances of cacontology-coord:LiaisonOfficer can have the following properties:
@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-coord:LiaisonAuthorityAlignmentBusinessRule a sh:NodeShape ;
sh:sparql [ sh:message "Primary liaisons should have full or limited authority aligned with their clearance level"@en ;
sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/investigation-coordination#"^^xsd:anyURI ;
sh:prefix "cacontology-coord" ] ] ;
sh:select """
SELECT $this
WHERE {
$this cacontology-coord:liaisonRole "primary_liaison" ;
cacontology-coord:communicationAuthority ?authority ;
cacontology-coord:clearanceLevel ?clearance .
FILTER (?clearance IN ("secret", "top_secret", "sci_access") &&
?authority IN ("information_only", "advisory_only"))
}
""" ] ;
sh:targetClass cacontology-coord:LiaisonOfficer .