https://cacontology.projectvic.org/victim-impact#SupportServiceShape
Validation shape for support service instances.
@prefix cacontology-impact: <https://cacontology.projectvic.org/victim-impact#> .
@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-impact:SupportServiceShape a sh:NodeShape ;
rdfs:label "Support Service Shape"@en ;
rdfs:comment "Validation shape for support service instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "victim_advocacy" "case_management" "crisis_intervention" "legal_support" "educational_support" "peer_support" "family_support" "financial_assistance" ) ;
sh:maxCount 1 ;
sh:message "Support service must specify service type from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-impact:serviceType ],
[ sh:datatype xsd:string ;
sh:in ( "victim_services" "nonprofit_organization" "government_agency" "healthcare_system" "educational_institution" "faith_based" "community_organization" ) ;
sh:maxCount 1 ;
sh:message "Support service must specify service provider from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-impact:serviceProvider ],
[ sh:datatype xsd:string ;
sh:in ( "minimal" "low" "moderate" "intensive" "crisis_level" "ongoing" ) ;
sh:maxCount 1 ;
sh:message "Service intensity must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-impact:serviceIntensity ] ;
sh:targetClass cacontology-impact:SupportService .