gtfs:block_id leaf node


URI

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

Label

block_id

Description

Identifies the block to which the trip belongs.

Usage

DOMAINPROPERTYRANGE
gtfs:Trip gtfs:block_id 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:block_id a rdf:Property ;
    rdfs:label "block_id"@en,
        "id_bloque"@es,
        "id_bloco"@pt ;
    rdfs:comment "Identifies the block to which the trip belongs."@en,
        "Identifica el bloque al que pertenece el viaje."@es,
        "Identifica o bloco ao qual a viagem pertence."@pt ;
    rdfs:domain gtfs:Trip ;
    rdfs:range xsd:string .