AeroDataBox · JSON Structure

Aerodatabox Country Contract Structure

Country data

Type: object Properties: 2 Required: 1
AviationFlightsAerospaceFlight DataAirport Data

CountryContract is a JSON Structure definition published by AeroDataBox, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

code name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-structure/aerodatabox-country-contract-structure.json",
  "description": "Country data",
  "type": "object",
  "properties": {
    "code": {
      "minLength": 1,
      "type": "string",
      "description": "Code"
    },
    "name": {
      "type": "string",
      "description": "Name",
      "nullable": true
    }
  },
  "required": [
    "code"
  ],
  "additionalProperties": false,
  "name": "CountryContract"
}