https://cacontology.projectvic.org/investigation-coordination#MissingChildRescueOperationShape
Validation shape for missing-child rescue operation instances, including explicit located-count outcomes.
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 | ||||
@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 .