Hi,
I'm trying to use Tampa's OBA API to get the trips for a route, as well as the stop times for those trips. To test this, I used the trips-for-location endpoint to find active trips (which are associated with routes). When I call the trips-for-route endpoint (with includeSchedules=true), the schedules are not included with the trips.
Here's what one of the trips looks like in the response from trips-for-route:
{
"frequency": null,
"schedule": null,
"serviceDate": 1448168400000,
"situationIds": [],
"status": null,
"tripId": "Hillsborough Area Regional Transit_98647"
}
Here's the call I'm making to find active routes:
Here's the call I'm making to get the trips for a route (there was an active trip belonging to route 5 in the response from the call above at the time I tested it):
Why are the schedules not included with the trips from trips-for-route?
Thanks.