OneBusAway · Schema

TimeWindow

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
from integer Start time of the time window as a Unix timestamp.
to integer End time of the time window as a Unix timestamp.
View JSON Schema on GitHub

JSON Schema

TimeWindow.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "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"
  ]
}