Ontology Version: 2.2.0

cacontology-coord:LiaisonAuthorityAlignmentBusinessRule leaf node


URI

https://cacontology.projectvic.org/investigation-coordination#LiaisonAuthorityAlignmentBusinessRule

Label

LiaisonAuthorityAlignmentBusinessRule

Shape Properties

Instances of cacontology-coord:LiaisonOfficer can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:LiaisonOfficer
cacontology-coord:assignmentDuration 1 1 xsd:decimal
cacontology-coord:clearanceLevel 0 1 xsd:string
cacontology-coord:communicationAuthority 1 1 xsd:string
cacontology-coord:hasDataCompleteness 1 xsd:double
cacontology-coord:hasDataConsistency 1 xsd:double
cacontology-coord:hasDataQuality 1 xsd:string
cacontology-coord:hasLiaisonEffectiveness 1 xsd:string
cacontology-coord:hasResponsiveness 1 xsd:string
cacontology-coord:hasTrustLevel 1 xsd:double
cacontology-coord:hasValidationLevel 1 xsd:string
cacontology-coord:liaisonRole 1 1 xsd:string
1 xsd:dateTime
1 xsd:dateTime
0 1 xsd:string
0 1 xsd:string
0 1 xsd:dateTime
0 1 xsd:dateTime

Implementation

@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 .