OneBusAway · Schema

StopGrouping

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
id string
name object
polylines array
stopIds array
View JSON Schema on GitHub

JSON Schema

StopGrouping.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StopGrouping",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "names": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "type": {
          "type": "string"
        }
      }
    },
    "polylines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Polylines"
      }
    },
    "stopIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}