BASE <https://w3id.org/itsdata/transport-network/v1/>
PREFIX : <https://w3id.org/itsdata/transport-network/v1/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX sh: <http://www.w3.org/ns/shacl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX its-core: <https://w3id.org/itsdata/core/v1/>
PREFIX its-location: <https://w3id.org/itsdata/location/v1/>
PREFIX its-sh: <https://w3id.org/itsdata/shacl/v1/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

:RoadNetworkSHACL
    a owl:Ontology ;
    dcterms:title "SHACL rules for ITS Road Network pattern"@en ;
    skos:definition "SHACL node shapes for road-network classes, which inherit constraints from the ITS Location ontology."@en ;
    its-core:draft "true" ;
    dcterms:created "Draft" ;
    dcterms:modified "2026-05-05T21:43:49Z"^^xsd:dateTime ;
    owl:versionInfo "0.0.1" ;
    owl:versionIRI <RoadNetworkSHACL/r0.1> ;
    owl:imports its-location:LocationCoreSHACL ;
    owl:imports its-location:LinearSHACL ;
     owl:imports :TransportNetworkSHACL .

:RoadNetworkShape
    a sh:NodeShape ;
    sh:targetClass :RoadNetwork ;
    sh:and ( its-location:LocationGroupShape ) .

:RoadShape
    a sh:NodeShape ;
    sh:targetClass :Road ;
    sh:and ( its-location:LinearFeatureShape ) .

:RoadLaneShape
    a sh:NodeShape ;
    sh:targetClass :RoadLane ;
    sh:and ( its-location:LinearFeatureShape ) .

:RoadLinkShape
    a sh:NodeShape ;
    sh:targetClass :RoadLink ;
    sh:and ( its-location:LinearFeatureShape ) .

:RoadSectionShape
    a sh:NodeShape ;
    sh:targetClass :RoadSection ;
    sh:and ( its-location:LinearFeatureShape ) .

:RoadSegmentShape
    a sh:NodeShape ;
    sh:targetClass :RoadSegment ;
    sh:and ( its-location:LinearFeatureShape ) .

