gtfs:to_trip_id leaf node


URI

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

Label

to_trip_id

Description

The trip where a transfer ends.

Usage

DOMAINPROPERTYRANGE
gtfs:Transfer gtfs:to_trip_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_trip_id a rdf:Property ;
    rdfs:label "to_trip_id"@en,
        "id_viaje_destino"@es,
        "id_viagem_destino"@pt ;
    rdfs:comment "The trip where a transfer ends."@en,
        "El viaje donde termina una transferencia."@es,
        "A viagem onde a transferĂȘncia termina."@pt ;
    rdfs:domain gtfs:Transfer ;
    rdfs:range xsd:string .