gtfs:contains_id leaf node


URI

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

Label

contains_id

Description

Identifies a zone that the itinerary passes through.

Usage

DOMAINPROPERTYRANGE
gtfs:FareRule gtfs:contains_id xsd:string

Implementation

@prefix gtfs: <http://ontology.gtfs.org/reference#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

gtfs:contains_id a rdf:Property ;
    rdfs:label "contains_id"@en,
        "id_contiene"@es,
        "id_contem"@pt ;
    rdfs:comment "Identifies a zone that the itinerary passes through."@en,
        "Identifica una zona por la que pasa el itinerario."@es,
        "Identifica uma zona pela qual o itinerĂ¡rio passa."@pt ;
    rdfs:domain gtfs:FareRule ;
    rdfs:range xsd:string .