gtfs:to_route_id leaf node


URI

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

Label

to_route_id

Description

The route where a transfer ends.

Usage

DOMAINPROPERTYRANGE
gtfs:Transfer gtfs:to_route_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:to_route_id a rdf:Property ;
    rdfs:label "to_route_id"@en,
        "id_ruta_destino"@es,
        "id_rota_destino"@pt ;
    rdfs:comment "The route where a transfer ends."@en,
        "La ruta donde termina una transferencia."@es,
        "A rota onde a transferĂȘncia termina."@pt ;
    rdfs:domain gtfs:Transfer ;
    rdfs:range xsd:string .