gtfs:to_stop_id leaf node


URI

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

Label

to_stop_id

Description

The stop where a transfer ends.

Usage

DOMAINPROPERTYRANGE
gtfs:Transfer gtfs:to_stop_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_stop_id a rdf:Property ;
    rdfs:label "to_stop_id"@en,
        "id_parada_destino"@es,
        "id_parada_destino"@pt ;
    rdfs:comment "The stop where a transfer ends."@en,
        "La parada donde termina una transferencia."@es,
        "A parada onde a transferĂȘncia termina."@pt ;
    rdfs:domain gtfs:Transfer ;
    rdfs:range xsd:string .