Ontology Version: 3.0.0

cacontology-educational-shapes:MultiVictimExploitationSituationGUFOShape leaf node


URI

https://cacontology.projectvic.org/educational/shapes#MultiVictimExploitationSituationGUFOShape

Label

gUFO Multi-Victim Exploitation Situation Shape

Description

Validates multi-victim exploitation situation instances with specialized coordination requirements.

Shape Properties

Instances of cacontology-educational:MultiVictimExploitationSituation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-educational:MultiVictimExploitationSituation
2 uco-identity:Person
cacontology-educational:victimCount xsd:nonNegativeInteger

Implementation

@prefix cacontology-educational: <https://cacontology.projectvic.org/educational#> .
@prefix cacontology-educational-shapes: <https://cacontology.projectvic.org/educational/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-educational-shapes:MultiVictimExploitationSituationGUFOShape a sh:NodeShape ;
    rdfs:label "gUFO Multi-Victim Exploitation Situation Shape"@en ;
    rdfs:comment "Validates multi-victim exploitation situation instances with specialized coordination requirements."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxInclusive 100 ;
            sh:message "Multi-victim situation must have between 2 and 100 victims"@en ;
            sh:minInclusive 2 ;
            sh:path cacontology-educational:victimCount ],
        [ sh:class uco-identity:Person ;
            sh:message "Multi-victim situation must involve at least two students"@en ;
            sh:minCount 2 ;
            sh:path cacontology-educational:involvedStudents ] ;
    sh:targetClass cacontology-educational:MultiVictimExploitationSituation .