gtfs:booking_type leaf node


URI

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

Label

booking_type

Description

Indicates how far in advance booking can be made.

Usage

DOMAINPROPERTYRANGE
gtfs:BookingRule gtfs:booking_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:booking_type a rdf:Property ;
    rdfs:label "booking_type"@en,
        "tipo_reserva"@es,
        "tipo_agendamento"@pt ;
    rdfs:comment "Indicates how far in advance booking can be made."@en,
        "Indica con cuánta anticipación se puede hacer la reserva."@es,
        "Indica com que antecedência o agendamento pode ser feito."@pt ;
    rdfs:domain gtfs:BookingRule ;
    rdfs:range xsd:integer .