gtfs:route_short_name leaf node


URI

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

Label

route_short_name

Description

Short name of a route. Often a short, abstract identifier.

Usage

DOMAINPROPERTYRANGE
gtfs:Route gtfs:route_short_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_short_name a rdf:Property ;
    rdfs:label "route_short_name"@en,
        "nombre_corto_ruta"@es,
        "nome_curto_rota"@pt ;
    rdfs:comment "Short name of a route. Often a short, abstract identifier."@en,
        "Nombre corto de una ruta. A menudo un identificador abstracto y corto."@es,
        "Nome curto de uma rota. Frequentemente um identificador curto e abstrato."@pt ;
    rdfs:domain gtfs:Route ;
    rdfs:range xsd:string .