gtfs:stop_code leaf node


URI

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

Label

stop_code

Description

Short text or a number that identifies the location for riders.

Usage

DOMAINPROPERTYRANGE
gtfs:Stop gtfs:stop_code 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_code a rdf:Property ;
    rdfs:label "stop_code"@en,
        "codigo_parada"@es,
        "codigo_parada"@pt ;
    rdfs:comment "Short text or a number that identifies the location for riders."@en,
        "Texto corto o número que identifica la ubicación para los pasajeros."@es,
        "Texto curto ou número que identifica o local para os passageiros."@pt ;
    rdfs:domain gtfs:Stop ;
    rdfs:range xsd:string .