gtfs:fare_product_name leaf node


URI

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

Label

fare_product_name

Description

Name of the fare product.

Usage

DOMAINPROPERTYRANGE
gtfs:FareProduct gtfs:fare_product_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:fare_product_name a rdf:Property ;
    rdfs:label "fare_product_name"@en,
        "nombre_producto_tarifario"@es,
        "nome_produto_tarifario"@pt ;
    rdfs:comment "Name of the fare product."@en,
        "Nombre del producto tarifario."@es,
        "Nome do produto tarifário."@pt ;
    rdfs:domain gtfs:FareProduct ;
    rdfs:range xsd:string .