gtfs:route_type leaf node


URI

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

Label

route_type

Description

Indicates the type of transportation used on a route.

Usage

DOMAINPROPERTYRANGE
gtfs:Route gtfs:route_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:route_type a rdf:Property ;
    rdfs:label "route_type"@en,
        "tipo_ruta"@es,
        "tipo_rota"@pt ;
    rdfs:comment "Indicates the type of transportation used on a route."@en,
        "Indica el tipo de transporte utilizado en una ruta."@es,
        "Indica o tipo de transporte usado em uma rota."@pt ;
    rdfs:domain gtfs:Route ;
    rdfs:range xsd:integer .