Ontology Version: 2.2.0

cacontology-institutional:OrphanedChildShape leaf node


URI

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

Label

Orphaned Child Shape

Description

Validation shape for orphaned children with gUFO integration.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-institutional:OrphanedChild
cacontology-institutional:hasVulnerabilityLevel 1 1 xsd:string
cacontology-institutional:vulnerabilityType 1
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:OrphanedChildShape a sh:NodeShape ;
    rdfs:label "Orphaned Child Shape"@en ;
    rdfs:comment "Validation shape for orphaned children with gUFO integration."@en ;
    sh:property [ sh:hasValue "orphaned" ;
            sh:message "Orphaned child must have 'orphaned' vulnerability type."@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:vulnerabilityType ],
        [ sh:datatype xsd:string ;
            sh:in ( "high" "severe" "extreme" "critical" ) ;
            sh:maxCount 1 ;
            sh:message "Orphaned child must have high vulnerability level (gUFO quality aspect)"@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:hasVulnerabilityLevel ] ;
    sh:targetClass cacontology-institutional:OrphanedChild .