gtfs:pickup_type leaf node


URI

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

Label

pickup_type

Description

Indicates pickup method.

Usage

DOMAINPROPERTYRANGE
gtfs:StopTime gtfs:pickup_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:pickup_type a rdf:Property ;
    rdfs:label "pickup_type"@en,
        "tipo_recogida"@es,
        "tipo_embarque"@pt ;
    rdfs:comment "Indicates pickup method."@en,
        "Indica el método de recogida."@es,
        "Indica o método de embarque."@pt ;
    rdfs:domain gtfs:StopTime ;
    rdfs:range xsd:integer .