gtfs:stop_name leaf node


URI

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

Label

stop_name

Description

Name of the location. The stop_name should match the agency's rider-facing name.

Usage

DOMAINPROPERTYRANGE
gtfs:Stop gtfs:stop_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:stop_name a rdf:Property ;
    rdfs:label "stop_name"@en,
        "nombre_parada"@es,
        "nome_parada"@pt ;
    rdfs:comment "Name of the location. The stop_name should match the agency's rider-facing name."@en,
        "Nombre de la ubicación. Debe coincidir con el nombre utilizado por la agencia."@es,
        "Nome do local. O nome da parada deve corresponder ao nome voltado para o passageiro."@pt ;
    rdfs:domain gtfs:Stop ;
    rdfs:range xsd:string .