Ontology Version: 3.0.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
cac-core:Role
cacontology-infrastructure:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-multi:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-multi:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-physical:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-physical:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-production:hasRoleBeginPoint 0 1 xsd:dateTimeStamp
cacontology-production:hasRoleEndPoint 0 1 xsd:dateTimeStamp
cacontology:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology:hasRoleEndPoint 1 xsd:dateTimeStamp
0 cacontology:CACInvestigation

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 ( "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: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:targetClass cacontology-institutional:TrustedAdultRole .