gtfs:table_name leaf node


URI

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

Label

table_name

Description

The table containing the field to be translated.

Usage

DOMAINPROPERTYRANGE
gtfs:Translation gtfs:table_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:table_name a rdf:Property ;
    rdfs:label "table_name"@en,
        "nombre_tabla"@es,
        "nome_tabela"@pt ;
    rdfs:comment "The table containing the field to be translated."@en,
        "La tabla que contiene el campo a traducir."@es,
        "A tabela contendo o campo a ser traduzido."@pt ;
    rdfs:domain gtfs:Translation ;
    rdfs:range xsd:string .