http://ontology.gtfs.org/reference#StopTimeShape
Instances of gtfs:StopTime can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| gtfs:StopTime | ||||
| gtfs:arrival_time |
xsd:string
|
|||
| gtfs:continuous_drop_off |
xsd:integer
|
|||
| gtfs:continuous_pickup |
xsd:integer
|
|||
| gtfs:departure_time |
xsd:string
|
|||
| gtfs:drop_off_booking_rule_id |
xsd:string
|
|||
| gtfs:drop_off_type |
xsd:integer
|
|||
| gtfs:pickup_booking_rule_id |
xsd:string
|
|||
| gtfs:pickup_type |
xsd:integer
|
|||
| gtfs:shape_dist_traveled |
xsd:decimal
|
|||
| gtfs:stop_headsign |
xsd:string
|
|||
| gtfs:stop_id | 1 |
xsd:string
|
||
| gtfs:stop_sequence | 1 |
xsd:nonNegativeInteger
|
||
| gtfs:timepoint |
xsd:integer
|
|||
| gtfs:trip_id | 1 |
xsd:string
|
||
@prefix gtfs: <http://ontology.gtfs.org/reference#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
gtfs:StopTimeShape a sh:NodeShape ;
sh:property [ sh:datatype xsd:nonNegativeInteger ;
sh:minCount 1 ;
sh:path gtfs:stop_sequence ],
[ sh:datatype xsd:string ;
sh:path gtfs:stop_headsign ],
[ sh:datatype xsd:integer ;
sh:in ( 0 1 2 3 ) ;
sh:path gtfs:pickup_type ],
[ sh:datatype xsd:integer ;
sh:in ( 0 1 2 3 ) ;
sh:path gtfs:drop_off_type ],
[ sh:datatype xsd:integer ;
sh:in ( 0 1 2 3 ) ;
sh:path gtfs:continuous_pickup ],
[ sh:datatype xsd:integer ;
sh:in ( 0 1 2 3 ) ;
sh:path gtfs:continuous_drop_off ],
[ sh:datatype xsd:decimal ;
sh:minInclusive 0.0 ;
sh:path gtfs:shape_dist_traveled ],
[ sh:datatype xsd:integer ;
sh:in ( 0 1 ) ;
sh:path gtfs:timepoint ],
[ sh:datatype xsd:string ;
sh:path gtfs:pickup_booking_rule_id ],
[ sh:datatype xsd:string ;
sh:path gtfs:drop_off_booking_rule_id ],
[ sh:datatype xsd:string ;
sh:minCount 1 ;
sh:path gtfs:trip_id ],
[ sh:datatype xsd:string ;
sh:path gtfs:arrival_time ;
sh:pattern "^([0-9]?[0-9]|[0-9][0-9][0-9]):[0-5][0-9]:[0-5][0-9]$" ],
[ sh:datatype xsd:string ;
sh:path gtfs:departure_time ;
sh:pattern "^([0-9]?[0-9]|[0-9][0-9][0-9]):[0-5][0-9]:[0-5][0-9]$" ],
[ sh:datatype xsd:string ;
sh:minCount 1 ;
sh:path gtfs:stop_id ] ;
sh:targetClass gtfs:StopTime .