Uses a TripTimes to represent multiple trips following the same template at regular intervals. (see GTFS frequencies.txt)
name | data type | constraints | description |
---|---|---|---|
startTime | number | required | |
endTime | number | required | |
headway | number | required | |
exactTimes | boolean | required | |
tripTimes | TripTimes |
Example
{ "startTime" : 12345, "endTime" : 12345, "headway" : 12345, "exactTimes" : true, "tripTimes" : { "wheelchairAccessibility" : "NOT_POSSIBLE", "scheduled" : true, "canceled" : true, "realTimeState" : "SCHEDULED", "numStops" : 12345, "serviceCode" : 12345, "trip" : { "operator" : { }, "route" : { }, "serviceId" : { }, "shortName" : "...", "mode" : "FERRY", "netexSubMode" : { }, "headsign" : { }, "shapeId" : { }, "direction" : "ANTICLOCKWISE", "bikesAllowed" : "NOT_ALLOWED", "wheelchairBoarding" : "POSSIBLE", "gtfsBlockId" : "...", "gtfsFareId" : "...", "netexInternalPlanningCode" : "...", "netexAlteration" : "CANCELLATION", "id" : { } } } }