gtfs:FeedInfoShape leaf node


URI

http://ontology.gtfs.org/reference#FeedInfoShape

Label

FeedInfoShape

Target Classes (1)

Shape Properties

Instances of gtfs:FeedInfo can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

gtfs:FeedInfo
gtfs:feed_lang 1 xsd:string
gtfs:feed_publisher_name 1 xsd:string
gtfs:feed_publisher_url 1 xsd:string

Implementation

@prefix gtfs: <http://ontology.gtfs.org/reference#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

gtfs:FeedInfoShape a sh:NodeShape ;
    sh:property [ sh:datatype xsd:string ;
            sh:minCount 1 ;
            sh:path gtfs:feed_publisher_name ],
        [ sh:datatype xsd:string ;
            sh:minCount 1 ;
            sh:path gtfs:feed_publisher_url ],
        [ sh:datatype xsd:string ;
            sh:minCount 1 ;
            sh:path gtfs:feed_lang ] ;
    sh:targetClass gtfs:FeedInfo .