https://cacontology.projectvic.org/grooming#SocialVulnerabilityShape
Validation shape for social vulnerability instances with gUFO integration.
@prefix cacontology-grooming: <https://cacontology.projectvic.org/grooming#> .
@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-grooming:SocialVulnerabilityShape a sh:NodeShape ;
rdfs:label "Social Vulnerability Shape"@en ;
rdfs:comment "Validation shape for social vulnerability instances with gUFO integration."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "none" "mild" "moderate" "severe" "complete" "self_imposed" ) ;
sh:maxCount 1 ;
sh:message "Social vulnerability must specify isolation level from the allowed list (gUFO quality aspect)."@en ;
sh:minCount 1 ;
sh:path cacontology-grooming:socialIsolation ],
[ sh:datatype xsd:string ;
sh:in ( "strong" "adequate" "limited" "minimal" "absent" "dysfunctional" ) ;
sh:maxCount 1 ;
sh:message "Social support must be from the allowed list (gUFO quality aspect)."@en ;
sh:minCount 0 ;
sh:path cacontology-grooming:socialSupport ],
[ sh:datatype xsd:double ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "Social connectedness must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
sh:minInclusive 0.0 ;
sh:path cacontology-grooming:socialConnectedness ] ;
sh:targetClass cacontology-grooming:SocialVulnerability .