OneBusAway · Schema

DetailedScheduleStopTime

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
stopId string
tripId string
View JSON Schema on GitHub

JSON Schema

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