Ontology Version: 2.2.0

cacontology-institutional:VulnerableChildInCareShape leaf node


URI

https://cacontology.projectvic.org/institutional-exploitation#VulnerableChildInCareShape

Label

Vulnerable Child in Care Shape

Description

Validation shape for vulnerable children with gUFO integration.

Shape Properties

Instances of cacontology-institutional:VulnerableChildInCare can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-institutional:VulnerableChildInCare
cacontology-institutional:hasVulnerabilityLevel 1 1 xsd:string
cacontology-institutional:vulnerabilityType 1 xsd:string
uco-identity:Person
cacontology-enterprises:participatesInCoercion cacontology-enterprises:SelfHarmCoercion
cacontology-enterprises:participatesInRecruitment cacontology-enterprises:ContentBasedRecruitment

Implementation

@prefix cacontology-institutional: <https://cacontology.projectvic.org/institutional-exploitation#> .
@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-institutional:VulnerableChildInCareShape a sh:NodeShape ;
    rdfs:label "Vulnerable Child in Care Shape"@en ;
    rdfs:comment "Validation shape for vulnerable children with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "low" "moderate" "high" "severe" "extreme" "critical" ) ;
            sh:maxCount 1 ;
            sh:message "Vulnerable child must specify vulnerability level (gUFO quality aspect)"@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:hasVulnerabilityLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "orphaned" "impoverished" "abandoned" "disabled" "refugee" "trafficked" "neglected" "abused" ) ;
            sh:message "Vulnerable child must specify at least one vulnerability type."@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:vulnerabilityType ] ;
    sh:targetClass cacontology-institutional:VulnerableChildInCare .