gtfs:exception_type leaf node


URI

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

Label

exception_type

Description

Indicates whether service is added or removed for the specified date.

Usage

DOMAINPROPERTYRANGE
gtfs:CalendarDate gtfs:exception_type xsd:integer

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:exception_type a rdf:Property ;
    rdfs:label "exception_type"@en,
        "tipo_excepcion"@es,
        "tipo_excecao"@pt ;
    rdfs:comment "Indicates whether service is added or removed for the specified date."@en,
        "Indica si el servicio se agrega o se elimina para la fecha especificada."@es,
        "Indica se o serviço é adicionado ou removido para a data especificada."@pt ;
    rdfs:domain gtfs:CalendarDate ;
    rdfs:range xsd:integer .