OneBusAway · Schema

ScheduleForStopEntry

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
date integer
stopId string
stopRouteSchedules array
View JSON Schema on GitHub

JSON Schema

ScheduleForStopEntry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ScheduleForStopEntry",
  "type": "object",
  "properties": {
    "date": {
      "type": "integer",
      "format": "int64"
    },
    "stopId": {
      "type": "string"
    },
    "stopRouteSchedules": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StopRouteSchedule"
      }
    }
  },
  "required": [
    "date",
    "stopId",
    "stopRouteSchedules"
  ]
}