ADS-B Exchange · Schema

GeoboundaryCountrySubdivisionsResponse

Response from the geoboundary endpoint containing country subdivisions.

AviationFlight TrackingADS-BAircraftReal-TimeMilitaryMLAT

Properties

Name Type Description
country string ISO 3166-1 alpha-2 country code.
subdivisions array List of subdivisions for the country available in the API.
View JSON Schema on GitHub

JSON Schema

geoboundarycountrysubdivisionsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GeoboundaryCountrySubdivisionsResponse",
  "type": "object",
  "description": "Response from the geoboundary endpoint containing country subdivisions.",
  "additionalProperties": false,
  "properties": {
    "country": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code."
    },
    "subdivisions": {
      "type": "array",
      "description": "List of subdivisions for the country available in the API.",
      "items": {
        "$ref": "#/components/schemas/GeoboundaryCountrySubdivision"
      }
    }
  }
}