https://cacontology.projectvic.org/specialized-units#WellnessCheckShape
Validation shape for wellness check instances.
Instances of cacontology-specialized:WellnessCheck can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@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 uco-action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-specialized:WellnessCheckShape a sh:NodeShape ;
rdfs:label "Wellness Check Shape"@en ;
rdfs:comment "Validation shape for wellness check instances."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Wellness check must specify when it was conducted."@en ;
sh:minCount 1 ;
sh:path uco-core:startTime ],
[ sh:class uco-identity:Person ;
sh:maxCount 1 ;
sh:message "Wellness check must specify who performed it."@en ;
sh:minCount 1 ;
sh:path uco-action:performer ] ;
sh:targetClass cacontology-specialized:WellnessCheck .