Ontology Version: 2.2.0

cacontology-coord:InvestigationCoordinationShape leaf node


URI

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

Label

Investigation Coordination Shape

Description

Validation shape for investigation coordination instances with gUFO integration.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:InvestigationCoordination
cacontology-coord:coordinationLevel 1 1 xsd:string
cacontology-coord:coordinationStatus 1 1 xsd:string
cacontology-coord:coordinationType 1 1 xsd:string
cacontology-coord:hasComplexityLevel 1 xsd:string
cacontology-coord:hasCoordinationEffectiveness 1 xsd:string
cacontology-coord:hasDataCompleteness 1 xsd:double
cacontology-coord:hasDataConsistency 1 xsd:double
cacontology-coord:hasDataQuality 1 xsd:string
cacontology-coord:hasSuccessRate 1 xsd:double
cacontology-coord:hasValidationLevel 1 xsd:string
cacontology-coord:leadAgency 1 1 xsd:string
cacontology-coord:participatingAgencies 1 1 xsd:nonNegativeInteger
1 xsd:dateTime
1 xsd:dateTime
0 1 xsd:string
0 1 xsd:string
0 1 xsd:dateTime
0 1 xsd:dateTime
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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-coord:InvestigationCoordinationShape a sh:NodeShape ;
    rdfs:label "Investigation Coordination Shape"@en ;
    rdfs:comment "Validation shape for investigation coordination instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "joint_investigation" "parallel_investigation" "information_sharing" "resource_sharing" "task_force_coordination" "multi_agency_coordination" ) ;
            sh:maxCount 1 ;
            sh:message "Investigation coordination must specify coordination type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:coordinationType ],
        [ sh:datatype xsd:string ;
            sh:in ( "local" "regional" "state" "multi_state" "federal" "international" ) ;
            sh:maxCount 1 ;
            sh:message "Investigation coordination must specify coordination level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:coordinationLevel ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 50 ;
            sh:message "Investigation coordination must have between 2 and 50 participating agencies."@en ;
            sh:minCount 1 ;
            sh:minInclusive 2 ;
            sh:path cacontology-coord:participatingAgencies ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 100 ;
            sh:message "Investigation coordination must specify lead agency (3-100 characters)."@en ;
            sh:minCount 1 ;
            sh:minLength 3 ;
            sh:path cacontology-coord:leadAgency ],
        [ sh:datatype xsd:string ;
            sh:in ( "active" "inactive" "pending" "completed" "suspended" "terminated" ) ;
            sh:maxCount 1 ;
            sh:message "Investigation coordination must specify coordination status from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:coordinationStatus ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Investigation coordination may have a start time."@en ;
            sh:minCount 0 ;
            sh:path uco-core:startTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Investigation coordination may have an end time."@en ;
            sh:minCount 0 ;
            sh:path uco-core:endTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Coordination may have gUFO temporal start boundary"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Coordination may have gUFO temporal end boundary"@en ;
            sh:path gufo:hasEndPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:string ;
            sh:in ( "poor" "fair" "good" "excellent" "outstanding" ) ;
            sh:maxCount 1 ;
            sh:message "Coordination effectiveness level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasCoordinationEffectiveness ],
        [ sh:datatype xsd:string ;
            sh:in ( "simple" "moderate" "complex" "highly_complex" "extremely_complex" ) ;
            sh:maxCount 1 ;
            sh:message "Coordination complexity level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasComplexityLevel ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Success rate must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasSuccessRate ] ;
    sh:targetClass cacontology-coord:InvestigationCoordination .