OneBusAway · Schema

Stop

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
code string
direction string
id string
lat number
locationType integer
lon number
name string
parent string
routeIds array
staticRouteIds array
wheelchairBoarding string
View JSON Schema on GitHub

JSON Schema

Stop.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Stop",
  "type": "object",
  "properties": {
    "code": {
      "type": "string"
    },
    "direction": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "lat": {
      "type": "number"
    },
    "locationType": {
      "type": "integer"
    },
    "lon": {
      "type": "number"
    },
    "name": {
      "type": "string"
    },
    "parent": {
      "type": "string"
    },
    "routeIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "staticRouteIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "wheelchairBoarding": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "lat",
    "lon",
    "name",
    "parent",
    "routeIds",
    "staticRouteIds",
    "locationType"
  ]
}