OneBusAway · Schema

StopTime

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
arrivalTime integer
departureTime integer
distanceAlongTrip number
historicalOccupancy string
stopHeadsign string
stopId string
View JSON Schema on GitHub

JSON Schema

StopTime.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StopTime",
  "type": "object",
  "properties": {
    "arrivalTime": {
      "type": "integer"
    },
    "departureTime": {
      "type": "integer"
    },
    "distanceAlongTrip": {
      "type": "number"
    },
    "historicalOccupancy": {
      "type": "string"
    },
    "stopHeadsign": {
      "type": "string"
    },
    "stopId": {
      "type": "string"
    }
  }
}