Ontology Version: 2.11.0

cacontology-coord:MissingChildRescueOperationShape leaf node


URI

https://cacontology.projectvic.org/investigation-coordination#MissingChildRescueOperationShape

Label

Missing Child Rescue Operation Shape

Description

Validation shape for missing-child rescue operation instances, including explicit located-count outcomes.

Shape Properties

Instances of cacontology-coord:MissingChildRescueOperation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:MissingChildRescueOperation
cacontology-coord:casesInProgressCount 0 1 xsd:nonNegativeInteger
cacontology-coord:childrenLocatedCount 1 1 xsd:nonNegativeInteger
1

Implementation

@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@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-coord:MissingChildRescueOperationShape a sh:NodeShape ;
    rdfs:label "Missing Child Rescue Operation Shape"@en ;
    rdfs:comment "Validation shape for missing-child rescue operation instances, including explicit located-count outcomes."@en ;
    sh:property [ sh:message "Missing child rescue operation must have an rdfs:label."@en ;
            sh:minCount 1 ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:message "Missing child rescue operation must specify childrenLocatedCount as a non-negative integer."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:childrenLocatedCount ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:message "casesInProgressCount, when provided, must be a non-negative integer."@en ;
            sh:minCount 0 ;
            sh:path cacontology-coord:casesInProgressCount ] ;
    sh:targetClass cacontology-coord:MissingChildRescueOperation .