gtfs:route_long_name leaf node


URI

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

Label

route_long_name

Description

Full name of a route. This name is generally more descriptive than the route_short_name.

Usage

DOMAINPROPERTYRANGE
gtfs:Route gtfs:route_long_name 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:route_long_name a rdf:Property ;
    rdfs:label "route_long_name"@en,
        "nombre_largo_ruta"@es,
        "nome_longo_rota"@pt ;
    rdfs:comment "Full name of a route. This name is generally more descriptive than the route_short_name."@en,
        "Nombre completo de una ruta. Generalmente más descriptivo que el nombre corto."@es,
        "Nome completo de uma rota. Este nome é geralmente mais descritivo do que o nome curto da rota."@pt ;
    rdfs:domain gtfs:Route ;
    rdfs:range xsd:string .