OneBusAway default API

The default API from OneBusAway — 13 operation(s) for default.

Operations 13

GET /api/where/agencies-with-coverage.json Returns a list of all transit agencies currently supported by OneBusAway along with the center of their coverage area.
GET /api/where/schedule-for-route/{routeID}.json Retrieve the full schedule for a route on a particular day
GET /api/where/routes-for-location.json routes-for-location
GET /api/where/routes-for-agency/{agencyID}.json Retrieve the list of all routes for a particular agency by id
GET /api/where/config.json config
GET /api/where/current-time.json current-time
GET /api/where/stops-for-location.json stops-for-location
GET /api/where/arrival-and-departure-for-stop/{stopID}.json arrival-and-departure-for-stop
GET /api/where/arrivals-and-departures-for-stop/{stopID}.json arrivals-and-departures-for-stop
GET /api/where/arrivals-and-departures-for-location.json arrivals-and-departures-for-location #
GET /api/where/trips-for-route/{routeID}.json Search for active trips for a specific route.
GET /api/where/trip-details/{tripID}.json Retrieve Trip Details
GET /api/where/trip-for-vehicle/{vehicleID}.json Retrieve trip for a specific vehicle

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/onebusaway-default-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

onebusaway-default-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OneBusAway Default API
  description: The OneBusAway REST API. For use with servers like https://api.pugetsound.onebusaway.org
  version: 0.0.2
servers:
- url: https://api.pugetsound.onebusaway.org
security:
- ApiKeyAuth: []
tags:
- name: default
paths:
  /api/where/agencies-with-coverage.json:
    get:
      tags:
      - default
      summary: Returns a list of all transit agencies currently supported by OneBusAway along with the center of their coverage area.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/CoverageResponse'
                  required:
                  - data
  /api/where/schedule-for-route/{routeID}.json:
    get:
      tags:
      - default
      summary: Retrieve the full schedule for a route on a particular day
      parameters:
      - name: routeID
        in: path
        description: The route id to request the schedule for
        schema:
          type: string
        example: '1_100223'
        required: true
      - name: date
        in: query
        description: The date for which you want to request a schedule in the format YYYY-MM-DD (optional, defaults to current date)
        schema:
          type: string
          format: date
        example: '2024-08-12'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/ScheduleForRouteResponse'
                  required:
                  - data
        '404':
          $ref: '#/components/responses/NotFound'
  /api/where/routes-for-location.json:
    get:
      tags:
      - default
      summary: routes-for-location
      parameters:
      - name: lat
        in: query
        schema:
          type: number
        example: 47.653435
        required: true
      - name: lon
        in: query
        schema:
          type: number
        example: -122.305641
        required: true
      - name: radius
        in: query
        schema:
          type: number
        required: false
      - name: latSpan
        in: query
        schema:
          type: number
        required: false
      - name: lonSpan
        in: query
        schema:
          type: number
        required: false
      - name: query
        in: query
        schema:
          type: string
        required: false
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/RoutesForLocationResponse'
                  required:
                  - data
  /api/where/routes-for-agency/{agencyID}.json:
    get:
      tags:
      - default
      summary: Retrieve the list of all routes for a particular agency by id
      parameters:
      - name: agencyID
        in: path
        required: true
        description: The id of the agency
        schema:
          type: string
        example: '40'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/RoutesForAgencyResponse'
                  required:
                  - data
  /api/where/config.json:
    get:
      tags:
      - default
      summary: config
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/ConfigResponse'
                  required:
                  - data
  /api/where/current-time.json:
    get:
      tags:
      - default
      summary: current-time
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/CurrentTimeResponse'
                  required:
                  - data
  /api/where/stops-for-location.json:
    get:
      tags:
      - default
      summary: stops-for-location
      parameters:
      - name: lat
        in: query
        required: true
        schema:
          type: number
        example: 47.656422
      - name: lon
        in: query
        required: true
        schema:
          type: number
        example: -122.305641
      - name: radius
        in: query
        required: false
        description: The radius in meters to search within
        schema:
          type: number
        example: 1000
      - name: latSpan
        in: query
        required: false
        description: An alternative to radius to set the search bounding box (optional)
        schema:
          type: number
        example: 0.01
      - name: lonSpan
        in: query
        required: false
        description: An alternative to radius to set the search bounding box (optional)
        schema:
          type: number
        example: 0.01
      - name: query
        in: query
        required: false
        description: A search query string to filter the results
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/StopsForLocationResponse'
                  required:
                  - data
  /api/where/arrival-and-departure-for-stop/{stopID}.json:
    get:
      tags:
      - default
      summary: arrival-and-departure-for-stop
      parameters:
      - name: stopID
        in: path
        required: true
        schema:
          type: string
        example: '1_75403'
      - name: tripId
        in: query
        required: true
        schema:
          type: string
        example: '1_604670535'
      - name: serviceDate
        in: query
        required: true
        schema:
          type: integer
        example: 1710918000000
      - name: vehicleId
        in: query
        schema:
          type: string
        example: '1_6936'
      - name: stopSequence
        in: query
        schema:
          type: integer
        example: 39
      - name: time
        in: query
        schema:
          type: integer
        example: 1710979086000
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/ArrivalDepartureForStopResponse'
                  required:
                  - data
  /api/where/arrivals-and-departures-for-stop/{stopID}.json:
    get:
      tags:
      - default
      summary: arrivals-and-departures-for-stop
      parameters:
      - name: stopID
        in: path
        required: true
        schema:
          type: string
        example: '1_75403'
      - name: minutesBefore
        in: query
        required: false
        schema:
          type: integer
          default: 5
        description: Include vehicles having arrived or departed in the previous n minutes.
      - name: minutesAfter
        in: query
        required: false
        schema:
          type: integer
          default: 35
        description: Include vehicles arriving or departing in the next n minutes.
      - name: time
        in: query
        required: false
        schema:
          type: string
          format: date-time
        description: The specific time for querying the system status.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/ArrivalsDeparturesForStopResponse'
                  required:
                  - data
  /api/where/arrivals-and-departures-for-location.json:
    get:
      tags:
      - default
      summary: arrivals-and-departures-for-location
      description: Returns real-time arrival and departure data for stops within a bounding box or radius centered on a specific location.
      operationId: getArrivalsAndDeparturesForLocation
      parameters:
      - name: lat
        in: query
        required: true
        description: The latitude coordinate of the search center.
        schema:
          type: number
          format: double
      - name: lon
        in: query
        required: true
        description: The longitude coordinate of the search center.
        schema:
          type: number
          format: double
      - name: radius
        in: query
        required: false
        description: The search radius in meters.
        schema:
          type: number
          format: double
      - name: latSpan
        in: query
        required: false
        description: Sets the latitude limits of the search bounding box.
        schema:
          type: number
          format: double
      - name: lonSpan
        in: query
        required: false
        description: Sets the longitude limits of the search bounding box.
        schema:
          type: number
          format: double
      - name: time
        in: query
        required: false
        description: By default, returns the status right now. Can be queried at a specific time (milliseconds since epoch) for testing.
        schema:
          type: integer
          format: int64
      - name: minutesBefore
        in: query
        required: false
        description: Include arrivals and departures this many minutes before the query time.
        schema:
          type: integer
          default: 5
      - name: minutesAfter
        in: query
        required: false
        description: Include arrivals and departures this many minutes after the query time.
        schema:
          type: integer
          default: 35
      - name: maxCount
        in: query
        required: false
        description: The max size of the list of nearby stops and arrivals to return. Defaults to 250, max 1000.
        schema:
          type: integer
          default: 250
          maximum: 1000
      - name: routeType
        in: query
        required: false
        description: Optional list of GTFS routeTypes to filter by (comma delimited) e.g. "1,2,3".
        schema:
          type: string
      - name: emptyReturnsNotFound
        in: query
        required: false
        description: If true, returns a 404 Not Found error instead of an empty result.
        schema:
          type: boolean
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/ArrivalsDeparturesForLocationResponse'
                  required:
                  - data
  /api/where/trips-for-route/{routeID}.json:
    get:
      tags:
      - default
      summary: Search for active trips for a specific route.
      parameters:
      - name: routeID
        in: path
        required: true
        description: The ID of the route.
        schema:
          type: string
      - name: includeStatus
        in: query
        required: false
        description: Determine whether full tripStatus elements with real-time information are included. Defaults to false.
        schema:
          type: boolean
      - name: includeSchedule
        in: query
        required: false
        description: Determine whether full schedule elements are included. Defaults to false.
        schema:
          type: boolean
      - name: time
        in: query
        required: false
        description: Query the system at a specific time. Useful for testing.
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      type: object
                      properties:
                        limitExceeded:
                          type: boolean
                        list:
                          type: array
                          items:
                            $ref: '#/components/schemas/TripDetails'
                        references:
                          $ref: '#/components/schemas/Reference'
                      required:
                      - list
                      - references
                  required:
                  - data
  /api/where/trip-details/{tripID}.json:
    get:
      tags:
      - default
      summary: Retrieve Trip Details
      parameters:
      - in: path
        name: tripID
        required: true
        schema:
          type: string
        description: ID of the trip to retrieve details for.
      - in: query
        name: serviceDate
        required: false
        schema:
          type: integer
          format: int64
        description: Service date for the trip as Unix time in milliseconds (optional).
      - in: query
        name: includeTrip
        required: false
        schema:
          type: boolean
        description: Whether to include the full trip element in the references section (defaults to true).
      - in: query
        name: includeSchedule
        required: false
        schema:
          type: boolean
        description: Whether to include the full schedule element in the tripDetails section (defaults to true).
      - in: query
        name: includeStatus
        required: false
        schema:
          type: boolean
        description: Whether to include the full status element in the tripDetails section (defaults to true).
      - in: query
        name: time
        required: false
        schema:
          type: integer
          format: int64
        description: Time parameter to query the system at a specific time (optional).
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/TripDetailsResponse'
                  required:
                  - data
  /api/where/trip-for-vehicle/{vehicleID}.json:
    get:
      tags:
      - default
      summary: Retrieve trip for a specific vehicle
      parameters:
      - in: path
        name: vehicleID
        required: true
        schema:
          type: string
        description: ID of the vehicle to retrieve trip details for.
      - in: query
        name: time
        schema:
          type: integer
          format: int64
        description: Time parameter to query the system at a specific time (optional).
      - in: query
        name: includeTrip
        schema:
          type: boolean
        description: Determines whether full <trip/> element is included in the <references/> section. Defaults to false.
      - in: query
        name: includeSchedule
        schema:
          type: boolean
        description: Determines whether full <schedule/> element is included in the <tripDetails/> section. Defaults to false.
      - in: query
        name: includeStatus
        schema:
          type: boolean
        description: Determines whether the full <status/> element is included in the <tripDetails/> section. Defaults to true.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/ResponseWrapper'
                - type: object
                  properties:
                    data:
                      $ref: '#/components/schemas/TripVehicleResponse'
                  required:
                  - data
components:
  schemas:
    CoverageResponse:
      type: object
      properties:
        limitExceeded:
          type: boolean
        list:
          type: array
          items:
            $ref: '#/components/schemas/Coverage'
        references:
          $ref: '#/components/schemas/Reference'
      required:
      - list
      - references
    TripVehicleResponse:
      type: object
      properties:
        entry:
          $ref: '#/components/schemas/TripEntry'
        references:
          $ref: '#/components/schemas/Reference'
      required:
      - entry
      - references
    TripDetailsResponse:
      type: object
      properties:
        entry:
          $ref: '#/components/schemas/TripEntry'
        references:
          $ref: '#/components/schemas/Reference'
      required:
      - entry
      - references
    CurrentTime:
      type: object
      properties:
        readableTime:
          type: string
        time:
          type: integer
    ArrivalDepartureForStopResponse:
      type: object
      properties:
        entry:
          $ref: '#/components/schemas/ArrivalDepartureForStop'
        references:
          $ref: '#/components/schemas/Reference'
      required:
      - entry
      - references
    TripStatus:
      type: object
      description: Trip-specific status for the arriving transit vehicle.
      properties:
        activeTripId:
          type: string
          description: Trip ID of the trip the vehicle is actively serving.
        blockTripSequence:
          type: integer
          description: Index of the active trip into the sequence of trips for the active block.
        closestStop:
          type: string
          description: ID of the closest stop to the current location of the transit vehicle.
        closestStopTimeOffset:
          type: integer
          description: Time offset from the closest stop to the current position of the transit vehicle (in seconds).
        distanceAlongTrip:
          type: number
          description: Distance, in meters, the transit vehicle has progressed along the active trip.
        frequency:
          type:
          - string
          - 'null'
          description: Information about frequency-based scheduling, if applicable to the trip.
        lastKnownDistanceAlongTrip:
          type: number
          description: Last known distance along the trip received in real-time from the transit vehicle.
        lastKnownLocation:
          type:
          - object
          - 'null'
          properties:
            lat:
              type: number
              description: Latitude of the last known location of the transit vehicle.
            lon:
              type: number
              description: Longitude of the last known location of the transit vehicle.
          description: Last known location of the transit vehicle (optional).
        lastKnownOrientation:
          type: number
          description: Last known orientation value received in real-time from the transit vehicle.
        lastLocationUpdateTime:
          type: integer
          description: Timestamp of the last known real-time location update from the transit vehicle.
        lastUpdateTime:
          type: integer
          description: Timestamp of the last known real-time update from the transit vehicle.
        nextStop:
          type: string
          description: ID of the next stop the transit vehicle is scheduled to arrive at.
        nextStopTimeOffset:
          type: integer
          description: Time offset from the next stop to the current position of the transit vehicle (in seconds).
        occupancyCapacity:
          type: integer
          description: Capacity of the transit vehicle in terms of occupancy.
        occupancyCount:
          type: integer
          description: Current count of occupants in the transit vehicle.
        occupancyStatus:
          type: string
          description: Current occupancy status of the transit vehicle.
        orientation:
          type: number
          description: Orientation of the transit vehicle, represented as an angle in degrees.
        phase:
          type: string
          description: Current journey phase of the trip.
        position:
          type: object
          properties:
            lat:
              type: number
              description: Latitude of the current position of the transit vehicle.
            lon:
              type: number
              description: Longitude of the current position of the transit vehicle.
          description: Current position of the transit vehicle.
        predicted:
          type: boolean
          description: Indicates if real-time arrival info is available for this trip.
        scheduleDeviation:
          type: integer
          description: Deviation from the schedule in seconds (positive for late, negative for early).
        scheduledDistanceAlongTrip:
          type: number
          description: Distance, in meters, the transit vehicle is scheduled to have progressed along the active trip.
        serviceDate:
          type: integer
          description: Time, in milliseconds since the Unix epoch, of midnight for the start of the service date for the trip.
        situationIds:
          type: array
          items:
            type: string
          description: References to situation elements (if any) applicable to this trip.
        status:
          type: string
          description: Current status modifiers for the trip.
        totalDistanceAlongTrip:
          type: number
          description: Total length of the trip, in meters.
        vehicleId:
          type: string
          description: ID of the transit vehicle currently serving the trip.
      required:
      - activeTripId
      - blockTripSequence
      - closestStop
      - distanceAlongTrip
      - lastKnownDistanceAlongTrip
      - lastLocationUpdateTime
      - lastUpdateTime
      - occupancyCapacity
      - occupancyCount
      - occupancyStatus
      - phase
      - predicted
      - scheduleDeviation
      - serviceDate
      - status
      - totalDistanceAlongTrip
    ResponseWrapper:
      type: object
      properties:
        code:
          type: integer
        currentTime:
          type: integer
        text:
          type: string
        version:
          type: integer
      required:
      - code
      - currentTime
      - text
      - version
    ArrivalsDeparturesForLocationResponse:
      type: object
      properties:
        entry:
          type: object
          properties:
            stopIds:
              type: array
              items:
                type: string
            arrivalsAndDepartures:
              type: array
              items:
                $ref: '#/components/schemas/ArrivalDepartureForStop'
            nearbyStopIds:
              type: array
              items:
                type: object
                properties:
                  stopId:
                    type: string
                  distanceFromQuery:
                    type: number
                    format: double
            situationIds:
              type: array
              items:
                type: string
            limitExceeded:
              type: boolean
          required:
          - stopIds
          - arrivalsAndDepartures
          - nearbyStopIds
          - limitExceeded
        references:
          $ref: '#/components/schemas/Reference'
      required:
      - entry
      - references
    StopTime:
      type: object
      properties:
        arrivalTime:
          type: integer
        departureTime:
          type: integer
        distanceAlongTrip:
          type: number
        historicalOccupancy:
          type: string
        stopHeadsign:
          type: string
        stopId:
          type: string
    ConfigResponse:
      type: object
      properties:
        entry:
          $ref: '#/components/schemas/Config'
        references:
          $ref: '#/components/schemas/Reference'
      required:
      - entry
      - references
    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
    TripEntry:
      type: object
      properties:
        frequency:
          type:
          - string
          - 'null'
        schedule:
          $ref: '#/components/schemas/TripSchedule'
        serviceDate:
          type: integer
        situationIds:
          type: array
          items:
            type: string
        status:
          $ref: '#/components/schemas/TripStatus'
        tripId:
          type: string
      required:
      - tripId
    TimeWindow:
      type: object
      properties:
        from:
          type: integer
          format: int64
          description: Start time of the time window as a Unix timestamp.
        to:
          type: integer
          format: int64
          description: End time of the time window as a Unix timestamp.
      required:
      - from
      - to
    TripSchedule:
      type:
      - object
      - 'null'
      properties:
        frequency:
          type:
          - string
          - 'null'
        nextTripId:
          type: string
        previousTripId:
          type: string
        stopTimes:
          type: array
          items:
            $ref: '#/components/schemas/StopTime'
        timeZone:
          type: string
      required:
      - stopTimes
      - timeZone
      - nextTripId
      - previousTripId
    RoutesForLocationResponse:
      type: object
      properties:
        limitExceeded:
          type: boolean
        list:
          type: array
          items:
            $ref: '#/components/schemas/Route'
        outOfRange:
          type: boolean
        references:
          $ref: '#/components/schemas/Reference'
      required:
      - list
      - references
      - outOfRange
    Reference:
      type: object
      properties:
        agencies:
          type: array
          items:
            $ref: '#/components/schemas/Agency'
        routes:
          type: array
          items:
            $ref: '#/components/schemas/Route'
        situations:
          type: array
          items:
            $ref: '#/components/schemas/Situation'
        stopTimes:
          type: array
          items:
            $ref: '#/components/schemas/StopTime'
        stops:
          type: array
          items:
            $ref: '#/components/schemas/Stop'
        trips:
          type: array
          items:
            $ref: '#/components/schemas/Trip'
      required:
      - agencies
      - routes
      - situations
      - stopTimes
      - stops
      - trips
    Config:
      type: object
      properties:
        gitProperties:
          type: object
          properties:
            git.branch:
              type: string
            git.build.host:
              type: string
            git.build.time:
              type: string
            git.build.user.email:
              type: string
            git.build.user.name:
              type: string
            git.build.version:
              type: string
            git.closest.tag.commit.count:
              type: string
            git.closest.tag.name:
              type: string
            git.commit.id:
              type: string
            git.commit.id.abbrev:
              type: string
            git.commit.id.describe:
              type: string
            git.commit.id.describe-short:
              type: string
            git.commit.message.full:
              type: string
            git.commit.message.short:
              type: string
            git.commit.time:
              type: string
            git.commit.user.email:
              type: string
            git.commit.user.name:
              type: string
            git.dirty:
              type: string
            git.remote.origin.url:
              type: string
            git.tags:
              type: string
        id:
          type: string
        name:
          type: string
        serviceDateFrom:
          type: string
        serviceDateTo:
          type: string
    Situation:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the situation.
        creationTime:
          type: integer
          format: int64
          description: Unix timestamp of when this situation was created.
        reason:
          type: string
          description: Reason for the service alert, taken from TPEG codes.
        summary:
          type: object
          properties:
            lang:
              type: string
              description: Language of the summary.
            value:
              type: string
              description: Short summary of the situation.
        description:
          type: object
          properties:
            lang:
              type: string
              description: Language of the description.
            value:
              type: string
              description: Longer description of the situation.
        url:
          type: object
          properties:
            lang:
              type: string
              description: Language of the URL.
            value:
              type: string
              description: URL for more information about the situation.
        activeWindows:
          type: array
          items:
            type: object
            properties:
              from:
                type: integer
                format: int64
                description: Start time of the active window as a Unix timestamp.
              to:
                type: integer
                format: int64
                description: End time of the active window as a Unix timestamp.
        allAffects:
          type: array
          items:
            type: object
            properties:
              agencyId:
                type: string
                description: Identifier for the agency.
              applicationId:
                type: string
                description: Identifier for the application.
              directionId:
                type: string
                description: Identifier for the direction.
              routeId:
                type: string
                description: Identifier for the route.
              stopId:
                type: string
                description: Identifier for the stop.
              tripId:


# --- truncated at 32 KB (44 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/onebusaway/refs/heads/main/openapi/onebusaway-default-api-openapi.yml