AeroDataBox · Schema

FlightAircraftContract

Flight's aircraft reference contract

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
reg string Tail-number of the aircraft
modeS string ICAO 24 bit Mode-S hexadecimal transponder address
model string Aircraft name and model
image object
View JSON Schema on GitHub

JSON Schema

aerodatabox-flightaircraftcontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlightAircraftContract",
  "title": "FlightAircraftContract",
  "type": "object",
  "properties": {
    "reg": {
      "type": "string",
      "description": "Tail-number of the aircraft",
      "nullable": true
    },
    "modeS": {
      "type": "string",
      "description": "ICAO 24 bit Mode-S hexadecimal transponder address",
      "nullable": true
    },
    "model": {
      "type": "string",
      "description": "Aircraft name and model",
      "nullable": true
    },
    "image": {
      "$ref": "#/components/schemas/ResourceContract"
    }
  },
  "additionalProperties": false,
  "description": "Flight's aircraft reference contract"
}