Ontology Version: 2.2.0

cacontology-tactical:TacticalTeamShape leaf node


URI

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

Label

Tactical Team Shape

Description

Validation shape for tactical team 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:TacticalTeamShape a sh:NodeShape ;
    rdfs:label "Tactical Team Shape"@en ;
    rdfs:comment "Validation shape for tactical team instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "swat_team" "entry_team" "surveillance_team" "arrest_team" "support_team" "specialized_unit" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical team must specify team type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:teamType ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 50 ;
            sh:message "Tactical team must have between 2 and 50 members."@en ;
            sh:minCount 1 ;
            sh:minInclusive 2 ;
            sh:path cacontology-tactical:teamSize ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 100 ;
            sh:message "Tactical team must specify team leader (3-100 characters)."@en ;
            sh:minCount 1 ;
            sh:minLength 3 ;
            sh:path cacontology-tactical:teamLeader ],
        [ sh:datatype xsd:string ;
            sh:in ( "standby" "ready" "deployed" "engaged" "stand_down" "maintenance" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical team must specify readiness level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:readinessLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "high_risk_entry" "hostage_rescue" "surveillance" "digital_forensics" "explosive_ordnance" "sniper_team" ) ;
            sh:maxCount 1 ;
            sh:message "Team specialization must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-tactical:specialization ],
        [ sh:datatype xsd:string ;
            sh:in ( "basic" "intermediate" "advanced" "expert" "specialized" "elite" ) ;
            sh:maxCount 1 ;
            sh:message "Tactical team must specify certification level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:certificationLevel ] ;
    sh:targetClass cacontology-tactical:TacticalTeam .