Ontology Version: 2.2.0

cacontology-trafficking-shapes:VictimTransportationShape leaf node


URI

https://cacontology.projectvic.org/trafficking/shapes#VictimTransportationShape

Label

Victim Transportation Shape

Description

Validates origin, destination, and method properties for victim transportation events.

Shape Properties

Instances of cacontology-trafficking:VictimTransportation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-trafficking:VictimTransportation
cacontology-trafficking:destinationLocation 1 1 uco-location:Location
cacontology-trafficking:originLocation 1 1 uco-location:Location
cacontology-trafficking:transportationMethod 1 uco-core:UcoObject

Implementation

@prefix cacontology-trafficking: <https://cacontology.projectvic.org/trafficking#> .
@prefix cacontology-trafficking-shapes: <https://cacontology.projectvic.org/trafficking/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix uco-location: <https://ontology.unifiedcyberontology.org/uco/location/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-trafficking-shapes:VictimTransportationShape a sh:NodeShape ;
    rdfs:label "Victim Transportation Shape"@en ;
    rdfs:comment "Validates origin, destination, and method properties for victim transportation events."@en ;
    sh:property [ sh:class uco-location:Location ;
            sh:maxCount 1 ;
            sh:message "Victim transportation must have exactly one originLocation of type uco-location:Location."@en ;
            sh:minCount 1 ;
            sh:path cacontology-trafficking:originLocation ],
        [ sh:class uco-location:Location ;
            sh:maxCount 1 ;
            sh:message "Victim transportation must have exactly one destinationLocation of type uco-location:Location."@en ;
            sh:minCount 1 ;
            sh:path cacontology-trafficking:destinationLocation ],
        [ sh:class uco-core:UcoObject ;
            sh:maxCount 1 ;
            sh:message "transportationMethod, when provided, must reference a single uco-core:UcoObject (e.g., vehicle or method artifact)."@en ;
            sh:path cacontology-trafficking:transportationMethod ] ;
    sh:targetClass cacontology-trafficking:VictimTransportation .