gtfs:route_text_color leaf node


URI

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

Label

route_text_color

Description

Legible color to use for text drawn against a background of route_color.

Usage

DOMAINPROPERTYRANGE
gtfs:Route gtfs:route_text_color 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:route_text_color a rdf:Property ;
    rdfs:label "route_text_color"@en,
        "color_texto_ruta"@es,
        "cor_texto_rota"@pt ;
    rdfs:comment "Legible color to use for text drawn against a background of route_color."@en,
        "Color legible para usar en el texto dibujado sobre un fondo de color de ruta."@es,
        "Cor legĂ­vel para usar no texto desenhado contra um fundo da cor da rota."@pt ;
    rdfs:domain gtfs:Route ;
    rdfs:range xsd:string .