Ontology Version: 2.2.0

cacontology-specialized:RapidResponseTeamShape leaf node


URI

https://cacontology.projectvic.org/specialized-units#RapidResponseTeamShape

Label

Rapid Response Team Shape

Description

Validation shape for rapid response team instances.

Implementation

@prefix cacontology-specialized: <https://cacontology.projectvic.org/specialized-units#> .
@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-specialized:RapidResponseTeamShape a sh:NodeShape ;
    rdfs:label "Rapid Response Team Shape"@en ;
    rdfs:comment "Validation shape for rapid response team instances."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 24.0 ;
            sh:message "Rapid response time must be between 0.25 and 24 hours."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0.25 ;
            sh:path cacontology-specialized:rapidResponseTime ] ;
    sh:targetClass cacontology-specialized:RapidResponseTeam .