https://cacontology.projectvic.org/institutional-exploitation#InstitutionalExploitationShape
Validation shape for institutional exploitation instances with gUFO integration.
Instances of cacontology-institutional:InstitutionalExploitation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| 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
|
|
@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:InstitutionalExploitationShape a sh:NodeShape ;
rdfs:label "Institutional Exploitation Shape"@en ;
rdfs:comment "Validation shape for institutional exploitation instances with gUFO integration."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Exploitation may have start date (gUFO temporal boundary)"@en ;
sh:path cacontology-institutional:hasExploitationStartDate ],
[ sh:datatype xsd:string ;
sh:in ( "low" "moderate" "high" "severe" "extreme" "catastrophic" ) ;
sh:maxCount 1 ;
sh:message "Exploitation must specify severity level (gUFO quality aspect)"@en ;
sh:minCount 1 ;
sh:path cacontology-institutional:hasExploitationSeverityLevel ],
[ sh:datatype xsd:nonNegativeInteger ;
sh:maxCount 1 ;
sh:maxInclusive 1000 ;
sh:message "Exploitation must specify victim count (1-1000)."@en ;
sh:minCount 1 ;
sh:minInclusive 1 ;
sh:path cacontology-institutional:victimCount ],
[ sh:class cacontology-institutional:CharitableOrganization ;
sh:maxCount 1 ;
sh:message "Exploitation must occur within a charitable organization."@en ;
sh:minCount 1 ;
sh:path cacontology-institutional:occursWithin ] ;
sh:targetClass cacontology-institutional:InstitutionalExploitation .