Ontology Version: 2.2.0

cacontology-institutional:TrustedAdultRoleShape leaf node


URI

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

Label

Trusted Adult Role Shape

Description

Validation shape for trusted adult roles with gUFO integration.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-institutional:TrustedAdultRole
cacontology-institutional:hasAuthorityLevel 1 1 xsd:string
cacontology-institutional:hasRoleEndDate 1 xsd:dateTime
cacontology-institutional:hasRoleStartDate 1 xsd:dateTime
cacontology-institutional:hasTrustLevel 1 1 xsd:string

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:TrustedAdultRoleShape a sh:NodeShape ;
    rdfs:label "Trusted Adult Role Shape"@en ;
    rdfs:comment "Validation shape for trusted adult roles with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "absolute" "high" "moderate" "low" "compromised" ) ;
            sh:maxCount 1 ;
            sh:message "Trusted adult must specify trust level (gUFO quality aspect)"@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:hasTrustLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "founder" "director" "supervisor" "caregiver" "staff" "volunteer" ) ;
            sh:maxCount 1 ;
            sh:message "Trusted adult must specify authority level (gUFO quality aspect)"@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:hasAuthorityLevel ] ;
    sh:targetClass cacontology-institutional:TrustedAdultRole .