AeroDataBox · JSON Structure

Aerodatabox Flight Airline Contract Structure

Flight's airline reference conract

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

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

Properties

name iata icao

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-flight-airline-contract-structure.json",
  "description": "Flight's airline reference conract",
  "type": "object",
  "properties": {
    "name": {
      "minLength": 1,
      "type": "string",
      "description": "Airline name"
    },
    "iata": {
      "type": "string",
      "description": "IATA code of the airline",
      "nullable": true
    },
    "icao": {
      "type": "string",
      "description": "ICAO code of the airline",
      "nullable": true
    }
  },
  "required": [
    "name"
  ],
  "additionalProperties": false,
  "name": "FlightAirlineContract"
}