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#>

:PedestrianNetworkSHACL
    a owl:Ontology ;
    dcterms:title "SHACL rules for ITS Pedestrian Network pattern"@en ;
    skos:definition "SHACL node shapes for pedestrian-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 <PedestrianNetworkSHACL/r0.1> ;
    owl:imports its-location:LocationCoreSHACL ;
    owl:imports its-location:LinearSHACL ;
     owl:imports :TransportNetworkSHACL .

:FootpathNetworkShape
    a sh:NodeShape ;
    sh:targetClass :FootpathNetwork ;
    sh:and ( its-location:LocationGroupShape ) .

:FootpathShape
    a sh:NodeShape ;
    sh:targetClass :Footpath ;
    sh:and ( its-location:LinearFeatureShape ) .

:FootpathLaneShape
    a sh:NodeShape ;
    sh:targetClass :FootpathLane ;
    sh:and ( its-location:LinearFeatureShape ) .

:FootpathLinkShape
    a sh:NodeShape ;
    sh:targetClass :FootpathLink ;
    sh:and ( its-location:LinearFeatureShape ) .

:FootpathSectionShape
    a sh:NodeShape ;
    sh:targetClass :FootpathSection ;
    sh:and ( its-location:LinearFeatureShape ) .

:FootpathSegmentShape
    a sh:NodeShape ;
    sh:targetClass :FootpathSegment ;
    sh:and ( its-location:LinearFeatureShape ) .

