gtfs:drop_off_type leaf node


URI

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

Label

drop_off_type

Description

Indicates drop off method.

Usage

DOMAINPROPERTYRANGE
gtfs:StopTime gtfs:drop_off_type xsd:integer

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:drop_off_type a rdf:Property ;
    rdfs:label "drop_off_type"@en,
        "tipo_bajada"@es,
        "tipo_desembarque"@pt ;
    rdfs:comment "Indicates drop off method."@en,
        "Indica el método de bajada."@es,
        "Indica o método de desembarque."@pt ;
    rdfs:domain gtfs:StopTime ;
    rdfs:range xsd:integer .