https://cacontology.projectvic.org/partnerships/shapes#RegularMeetingShape
Validation shape for regular meeting instances.
Instances of cacontology-partnerships:RegularMeeting can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-partnerships: <https://cacontology.projectvic.org/partnerships#> .
@prefix cacontology-partnerships-shapes: <https://cacontology.projectvic.org/partnerships/shapes#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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-partnerships-shapes:RegularMeetingShape a sh:NodeShape ;
rdfs:label "Regular Meeting Shape"@en ;
rdfs:comment "Validation shape for regular meeting instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "weekly" "monthly" "quarterly" "annual" "ad_hoc" ) ;
sh:maxCount 1 ;
sh:message "Meeting frequency must be from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-partnerships:meetingFrequency ] ;
sh:targetClass cacontology-partnerships:RegularMeeting .