Ontology Version: 2.2.0

cacontology-specialized:ChildRescueUnitShape leaf node


URI

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

Label

Child Rescue Unit Shape

Description

Validation shape for child rescue unit 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:ChildRescueUnitShape a sh:NodeShape ;
    rdfs:label "Child Rescue Unit Shape"@en ;
    rdfs:comment "Validation shape for child rescue unit instances."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 10000 ;
            sh:message "Rescue operations count must be between 0 and 10000."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0 ;
            sh:path cacontology-specialized:rescueOperationsCount ] ;
    sh:targetClass cacontology-specialized:ChildRescueUnit .