Ontology Version: 2.2.0

cacontology-street:LocationTransitionShape leaf node


URI

https://cacontology.projectvic.org/street#LocationTransitionShape

Label

Location Transition Shape

Description

Validation shape for location transition instances.

Shape Properties

Instances of cacontology-street:LocationTransition can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-street:LocationTransition
cacontology-street:transportationMethod 0 1 xsd:string

Implementation

@prefix cacontology-street: <https://cacontology.projectvic.org/street#> .
@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-street:LocationTransitionShape a sh:NodeShape ;
    rdfs:label "Location Transition Shape"@en ;
    rdfs:comment "Validation shape for location transition instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "Transportation method may be specified."@en ;
            sh:minCount 0 ;
            sh:path cacontology-street:transportationMethod ] ;
    sh:targetClass cacontology-street:LocationTransition .