OneBusAway · Schema

ArrivalsDeparturesForStopResponse

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
entry object
references object
View JSON Schema on GitHub

JSON Schema

ArrivalsDeparturesForStopResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ArrivalsDeparturesForStopResponse",
  "type": "object",
  "properties": {
    "entry": {
      "type": "object",
      "properties": {
        "arrivalsAndDepartures": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ArrivalDepartureForStop"
          }
        }
      },
      "required": [
        "arrivalsAndDepartures"
      ]
    },
    "references": {
      "$ref": "#/components/schemas/Reference"
    }
  },
  "required": [
    "entry",
    "references"
  ]
}