OneBusAway · Schema

ScheduleEntry

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
routeId string
scheduleDate integer
serviceIds array
stopTripGroupings array
View JSON Schema on GitHub

JSON Schema

ScheduleEntry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ScheduleEntry",
  "type": "object",
  "properties": {
    "routeId": {
      "type": "string"
    },
    "scheduleDate": {
      "type": "integer"
    },
    "serviceIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "stopTripGroupings": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StopTripGrouping"
      }
    }
  },
  "required": [
    "routeId",
    "scheduleDate",
    "serviceIds",
    "stopTripGroupings"
  ]
}