OneBusAway · Schema

ScheduleStopTime

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
arrivalEnabled boolean
arrivalTime integer
departureEnabled boolean
departureTime integer
serviceId string
stopHeadsign string
tripId string
View JSON Schema on GitHub

JSON Schema

ScheduleStopTime.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ScheduleStopTime",
  "type": "object",
  "properties": {
    "arrivalEnabled": {
      "type": "boolean"
    },
    "arrivalTime": {
      "type": "integer",
      "format": "int64"
    },
    "departureEnabled": {
      "type": "boolean"
    },
    "departureTime": {
      "type": "integer",
      "format": "int64"
    },
    "serviceId": {
      "type": "string"
    },
    "stopHeadsign": {
      "type": "string"
    },
    "tripId": {
      "type": "string"
    }
  },
  "required": [
    "arrivalEnabled",
    "arrivalTime",
    "departureEnabled",
    "departureTime",
    "serviceId",
    "tripId"
  ]
}