Skip to content

Commit

Permalink
Add range for arrivalTime and departureTime for OpenTransport#7
Browse files Browse the repository at this point in the history
  • Loading branch information
diarmuidr3d committed Jan 19, 2016
1 parent f68fdf1 commit 4413334
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions gtfs.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix status: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix status: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .a
@prefix schema: <http://schema.org/> .
#the deprecated vocabulary we're still linking to - https://github.com/iand/vocab-transit/issues/4
@prefix transit: <http://vocab.org/transit/terms/> .
Expand Down Expand Up @@ -425,7 +425,8 @@ gtfs:arrivalTime a rdf:Property ;
rdfs:comment "Check the original specification for special cases"@en ;
rdfs:comment "Compruebe la especificación original para casos especiales"@es ;
rdfs:seeAlso <https://developers.google.com/transit/gtfs/reference#stop_times_fields> ;
rdfs:domain gtfs:StopTime .
rdfs:domain gtfs:StopTime ;
rdfs:range xsd:duration .

gtfs:departureTime a rdf:Property ;
status:term_status "unstable"@en ;
Expand All @@ -435,7 +436,8 @@ gtfs:departureTime a rdf:Property ;
rdfs:comment "Check the original specification for special cases"@en ;
rdfs:comment "Compruebe la especificación original para casos especiales"@es ;
rdfs:seeAlso <https://developers.google.com/transit/gtfs/reference#stop_times_fields> ;
rdfs:domain gtfs:StopTime .
rdfs:domain gtfs:StopTime ;
rdfs:range xsd:duration .

gtfs:stopSequence a rdf:Property ;
status:term_status "unstable"@en ;
Expand Down

0 comments on commit 4413334

Please sign in to comment.