Ontology Version: 2.2.0

cacontology-tactical:TacticalOperationShape leaf node


URI

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

Label

Tactical Operation Shape

Description

Validation shape for tactical operation instances.

Shape Properties

Instances of cacontology-tactical:TacticalOperation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-tactical:TacticalOperation
1 1 xsd:string
1 1 xsd:string
cacontology-tactical:operationType 1 1 xsd:string
1 1 xsd:nonNegativeInteger
cacontology-tactical:planningDuration 0 1 xsd:decimal
cacontology-tactical:riskLevel 1 1 xsd:string
0 1 xsd:dateTime
0 1 xsd:dateTime

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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-tactical:TacticalOperationShape a sh:NodeShape ;
    rdfs:label "Tactical Operation Shape"@en ;
    rdfs:comment "Validation shape for tactical operation instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "arrest_operation" "search_warrant" "surveillance_operation" "undercover_operation" "raid" "rescue_operation" "containment" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical operation must specify operation type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:operationType ],
        [ sh:datatype xsd:string ;
            sh:in ( "low" "moderate" "high" "extreme" "critical" "unknown" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical operation must specify risk level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:riskLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "planning" "approved" "active" "completed" "aborted" "suspended" "failed" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical operation must specify operation status from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:operationStatus ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 200 ;
            sh:message "Tactical operation must have between 1 and 200 personnel."@en ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:path cacontology-tactical:personnelCount ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 8760.0 ;
            sh:message "Planning duration must be between 1 and 8760 hours (1 year)."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1.0 ;
            sh:path cacontology-tactical:planningDuration ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Tactical operation may have a start time."@en ;
            sh:minCount 0 ;
            sh:path uco-core:startTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Tactical operation may have an end time."@en ;
            sh:minCount 0 ;
            sh:path uco-core:endTime ],
        [ sh:datatype xsd:string ;
            sh:in ( "single_target" "multiple_targets" "area_operation" "coordinated_operation" "multi_jurisdictional" "international" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical operation must specify operation scope from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:operationScope ] ;
    sh:targetClass cacontology-tactical:TacticalOperation .