OneBusAway · Schema

Agency

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
disclaimer string
email string
fareUrl string
id string
lang string
name string
phone string
privateService boolean
timezone string
url string
View JSON Schema on GitHub

JSON Schema

Agency.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Agency",
  "type": "object",
  "properties": {
    "disclaimer": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "fareUrl": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "lang": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "privateService": {
      "type": "boolean"
    },
    "timezone": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "name",
    "timezone",
    "url"
  ]
}