Ontology Version: 2.2.0

cacontology-tactical:TacticalExecutionShape leaf node


URI

https://cacontology.projectvic.org/tactical#TacticalExecutionShape

Label

Tactical Execution Shape

Description

Validation shape for tactical execution instances.

Implementation

@prefix cacontology-tactical: <https://cacontology.projectvic.org/tactical#> .
@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-tactical:TacticalExecutionShape a sh:NodeShape ;
    rdfs:label "Tactical Execution Shape"@en ;
    rdfs:comment "Validation shape for tactical execution instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "preparation" "deployment" "execution" "consolidation" "withdrawal" "debriefing" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical execution must specify execution phase from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:executionPhase ],
        [ sh:datatype xsd:string ;
            sh:in ( "successful" "partially_successful" "failed" "aborted" "compromised" "ongoing" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical execution must specify execution status from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:executionStatus ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Tactical execution must specify if force was used."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:forceUsed ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Tactical execution must specify if injuries were reported."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:injuriesReported ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Tactical execution must specify if evidence was seized."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:evidenceSeized ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 100 ;
            sh:message "Number of arrests made must be between 0 and 100."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0 ;
            sh:path cacontology-tactical:arrestsMade ] ;
    sh:targetClass cacontology-tactical:TacticalExecution .