OneBusAway · Schema

TripWithStopTimes

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
tripId string
stopTimes array
View JSON Schema on GitHub

JSON Schema

TripWithStopTimes.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TripWithStopTimes",
  "type": "object",
  "properties": {
    "tripId": {
      "type": "string"
    },
    "stopTimes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DetailedScheduleStopTime"
      }
    }
  },
  "required": [
    "tripId",
    "stopTimes"
  ]
}