https://cacontology.projectvic.org/victim-impact#TreatmentOutcomeShape
Validation shape for treatment outcome 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:TreatmentOutcomeShape a sh:NodeShape ;
rdfs:label "Treatment Outcome Shape"@en ;
rdfs:comment "Validation shape for treatment outcome instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "symptom_reduction" "functional_improvement" "behavioral_change" "emotional_regulation" "social_functioning" "academic_improvement" "relational_healing" ) ;
sh:maxCount 1 ;
sh:message "Treatment outcome must specify outcome type from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-impact:outcomeType ],
[ sh:datatype xsd:string ;
sh:in ( "no_improvement" "minimal_improvement" "moderate_improvement" "significant_improvement" "substantial_improvement" "complete_resolution" ) ;
sh:maxCount 1 ;
sh:message "Treatment outcome must specify outcome level from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-impact:outcomeLevel ],
[ sh:datatype xsd:string ;
sh:in ( "clinical_assessment" "standardized_instrument" "behavioral_observation" "self_report" "caregiver_report" "functional_assessment" ) ;
sh:maxCount 1 ;
sh:message "Measurement method must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-impact:measurementMethod ] ;
sh:targetClass cacontology-impact:TreatmentOutcome .