gtfs:date leaf node


URI

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

Label

date

Description

Date (in YYYYMMDD format) when the exception occurs/service is available.

Usage

DOMAINPROPERTYRANGE
gtfs:CalendarDate gtfs:date 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:date a rdf:Property ;
    rdfs:label "date"@en,
        "fecha"@es,
        "data"@pt ;
    rdfs:comment "Date (in YYYYMMDD format) when the exception occurs/service is available."@en,
        "Fecha (en formato AAAAMMDD) cuando ocurre la excepción/el servicio está disponible."@es,
        "Data (no formato AAAAMMDD) em que a exceção ocorre/serviço está disponível."@pt ;
    rdfs:domain gtfs:CalendarDate ;
    rdfs:range xsd:string .