Ontology Version: 2.2.0

cacontology-institutional:RepeatedCrossBorderTravelShape leaf node


URI

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

Label

Repeated Cross Border Travel Shape

Description

Validation shape for repeated travel patterns with gUFO integration.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-institutional:RepeatedCrossBorderTravel
cacontology-institutional:travelFrequency 1 1 xsd:string
cacontology-institutional:travelPatternYears 1 1 xsd:nonNegativeInteger
cacontology-institutional:CrossBorderPersonalTravel
cacontology-institutional:hasTravelDate 1 1 xsd:dateTime
cacontology-institutional:travelsFrom 1 1 uco-location:Location
cacontology-institutional:travelsTo 1 1 uco-location:Location
cacontology-institutional:undertakesTravelFor 1 1 uco-identity:Person

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:RepeatedCrossBorderTravelShape a sh:NodeShape ;
    rdfs:label "Repeated Cross Border Travel Shape"@en ;
    rdfs:comment "Validation shape for repeated travel patterns with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "monthly" "quarterly" "semi_annually" "annually" "bi_annually" ) ;
            sh:maxCount 1 ;
            sh:message "Repeated travel must specify frequency from allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-institutional:travelFrequency ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 30 ;
            sh:message "Repeated travel pattern must span 2-30 years."@en ;
            sh:minCount 1 ;
            sh:minInclusive 2 ;
            sh:path cacontology-institutional:travelPatternYears ] ;
    sh:targetClass cacontology-institutional:RepeatedCrossBorderTravel .