OneBusAway · Schema

StopRouteSchedule

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
routeId string
stopRouteDirectionSchedules array
View JSON Schema on GitHub

JSON Schema

StopRouteSchedule.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StopRouteSchedule",
  "type": "object",
  "properties": {
    "routeId": {
      "type": "string"
    },
    "stopRouteDirectionSchedules": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StopRouteDirectionSchedule"
      }
    }
  },
  "required": [
    "routeId",
    "stopRouteDirectionSchedules"
  ]
}