gtfs:location_group_name leaf node


URI

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

Label

location_group_name

Description

Name of the location group.

Usage

DOMAINPROPERTYRANGE
gtfs:LocationGroup gtfs:location_group_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:location_group_name a rdf:Property ;
    rdfs:label "location_group_name"@en,
        "nombre_grupo_ubicacion"@es,
        "nome_grupo_localizacao"@pt ;
    rdfs:comment "Name of the location group."@en,
        "Nombre del grupo de ubicación."@es,
        "Nome do grupo de localização."@pt ;
    rdfs:domain gtfs:LocationGroup ;
    rdfs:range xsd:string .