https://cacontology.projectvic.org/production#FacilitatorShape
Validation shape for facilitator role instances.
@prefix cacontology-production: <https://cacontology.projectvic.org/production#> .
@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-production:FacilitatorShape a sh:NodeShape ;
rdfs:label "Facilitator Shape"@en ;
rdfs:comment "Validation shape for facilitator role instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "equipment_provider" "location_provider" "victim_recruiter" "technical_support" "distribution_coordinator" "financial_facilitator" ) ;
sh:maxCount 1 ;
sh:message "Facilitator must specify facilitation type from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-production:facilitationType ] ;
sh:targetClass cacontology-production:Facilitator .