Ontology Version: 2.2.0

cacontology-institutional:IsolationBasedControlShape leaf node


URI

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

Label

Isolation Based Control Shape

Description

Validation shape for isolation-based control with gUFO integration.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-institutional:IsolationBasedControl
cacontology-institutional:hasIsolationDegree 1 1 xsd:string
cacontology-institutional:isolationDegree 1 1 xsd:string
cacontology-institutional:InstitutionalExploitation
cacontology-institutional:hasExploitationEndDate 1 xsd:dateTime
cacontology-institutional:hasExploitationSeverityLevel 1 1 xsd:string
cacontology-institutional:hasExploitationStartDate 1 xsd:dateTime
cacontology-institutional:occursWithin 1 1 cacontology-institutional:CharitableOrganization
cacontology-institutional:victimCount 1 1 xsd:nonNegativeInteger

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:IsolationBasedControlShape a sh:NodeShape ;
    rdfs:label "Isolation Based Control Shape"@en ;
    rdfs:comment "Validation shape for isolation-based control with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "complete" "high" "moderate" "partial" "minimal" ) ;
            sh:maxCount 1 ;
            sh:message "Isolation control must specify isolation degree (gUFO quality aspect)"@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:hasIsolationDegree ],
        [ sh:datatype xsd:string ;
            sh:in ( "complete" "high" "moderate" "partial" ) ;
            sh:maxCount 1 ;
            sh:message "Isolation must specify degree from allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:isolationDegree ] ;
    sh:targetClass cacontology-institutional:IsolationBasedControl .