OneBusAway · Schema

TripsForLocationResponse

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
limitExceeded boolean Indicates if the limit of trips has been exceeded
list array
outOfRange boolean Indicates if the search location is out of range
references object
View JSON Schema on GitHub

JSON Schema

TripsForLocationResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TripsForLocationResponse",
  "type": "object",
  "properties": {
    "limitExceeded": {
      "type": "boolean",
      "description": "Indicates if the limit of trips has been exceeded"
    },
    "list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TripDetails"
      }
    },
    "outOfRange": {
      "type": "boolean",
      "description": "Indicates if the search location is out of range"
    },
    "references": {
      "$ref": "#/components/schemas/Reference"
    }
  },
  "required": [
    "list",
    "references"
  ]
}