Ontology Version: 2.2.0

cacontology-coord:LiaisonOfficerShape leaf node


URI

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

Label

Liaison Officer Shape

Description

Validation shape for liaison officer instances with gUFO integration.

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 gufo: <http://purl.org/nemo/gufo#> .
@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:LiaisonOfficerShape a sh:NodeShape ;
    rdfs:label "Liaison Officer Shape"@en ;
    rdfs:comment "Validation shape for liaison officer instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "primary_liaison" "secondary_liaison" "technical_liaison" "legal_liaison" "intelligence_liaison" "operational_liaison" ) ;
            sh:maxCount 1 ;
            sh:message "Liaison officer must specify liaison role from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:liaisonRole ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 2190.0 ;
            sh:message "Liaison assignment duration must be between 1 and 2190 days (6 years)."@en ;
            sh:minCount 1 ;
            sh:minInclusive 1.0 ;
            sh:path cacontology-coord:assignmentDuration ],
        [ sh:datatype xsd:string ;
            sh:in ( "none" "public_trust" "confidential" "secret" "top_secret" "sci_access" ) ;
            sh:maxCount 1 ;
            sh:message "Clearance level must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-coord:clearanceLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "full_authority" "limited_authority" "information_only" "coordination_only" "advisory_only" ) ;
            sh:maxCount 1 ;
            sh:message "Liaison officer must specify communication authority from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:communicationAuthority ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Liaison assignment may have start time (gUFO temporal boundary)"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Liaison assignment may have end time (gUFO temporal boundary)"@en ;
            sh:path gufo:hasEndPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:string ;
            sh:in ( "poor" "adequate" "good" "excellent" "exceptional" ) ;
            sh:maxCount 1 ;
            sh:message "Liaison effectiveness level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasLiaisonEffectiveness ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Trust level must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasTrustLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "slow" "moderate" "good" "rapid" "immediate" ) ;
            sh:maxCount 1 ;
            sh:message "Responsiveness level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasResponsiveness ] ;
    sh:targetClass cacontology-coord:LiaisonOfficer .