gtfs:duration_limit leaf node


URI

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

Label

duration_limit

Description

Time limit for the transfer.

Usage

DOMAINPROPERTYRANGE
gtfs:FareTransferRule gtfs:duration_limit 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:duration_limit a rdf:Property ;
    rdfs:label "duration_limit"@en,
        "limite_duracion"@es,
        "limite_duracao"@pt ;
    rdfs:comment "Time limit for the transfer."@en,
        "LĂ­mite de tiempo para la transferencia."@es,
        "Limite de tempo para a transferĂȘncia."@pt ;
    rdfs:domain gtfs:FareTransferRule ;
    rdfs:range xsd:integer .