https://cacontology.projectvic.org/specialized-units#SafetyEducationEventShape
Validation shape for safety education event instances.
@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-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-specialized:SafetyEducationEventShape a sh:NodeShape ;
rdfs:label "Safety Education Event Shape"@en ;
rdfs:comment "Validation shape for safety education event instances."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Safety education event must specify start time."@en ;
sh:minCount 1 ;
sh:path uco-core:startTime ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:maxInclusive 10000 ;
sh:message "Attendee count must be between 1 and 10000 when specified."@en ;
sh:minCount 0 ;
sh:minInclusive 1 ;
sh:path cacontology-specialized:attendeeCount ] ;
sh:targetClass cacontology-specialized:SafetyEducationEvent .