gtfs:location_group_id leaf node


URI

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

Label

location_group_id

Description

Identifies a location group.

Usage

DOMAINPROPERTYRANGE
gtfs:LocationGroup gtfs:location_group_id 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_id a rdf:Property ;
    rdfs:label "location_group_id"@en,
        "id_grupo_ubicacion"@es,
        "id_grupo_localizacao"@pt ;
    rdfs:comment "Identifies a location group."@en,
        "Identifica un grupo de ubicación."@es,
        "Identifica um grupo de localização."@pt ;
    rdfs:domain gtfs:LocationGroup ;
    rdfs:range xsd:string .