AeroDataBox · JSON Structure

Aerodatabox Airport Flight Contract Structure

Flight data contract represented in airport schedule

Type: object Properties: 11 Required: 4
AviationFlightsAerospaceFlight DataAirport Data

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

Properties

movement departure arrival number callSign status codeshareStatus isCargo aircraft airline location

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-airport-flight-contract-structure.json",
  "description": "Flight data contract represented in airport schedule",
  "type": "object",
  "properties": {
    "movement": {
      "$ref": "#/components/schemas/FlightAirportMovementContract"
    },
    "departure": {
      "$ref": "#/components/schemas/FlightAirportMovementContract"
    },
    "arrival": {
      "$ref": "#/components/schemas/FlightAirportMovementContract"
    },
    "number": {
      "minLength": 1,
      "type": "string",
      "description": "Flight Number"
    },
    "callSign": {
      "type": "string",
      "description": "ATC call-sign of the flight",
      "nullable": true
    },
    "status": {
      "$ref": "#/components/schemas/FlightStatus"
    },
    "codeshareStatus": {
      "$ref": "#/components/schemas/CodeshareStatus"
    },
    "isCargo": {
      "type": "boolean",
      "description": "Is cargo flight"
    },
    "aircraft": {
      "$ref": "#/components/schemas/FlightAircraftContract"
    },
    "airline": {
      "$ref": "#/components/schemas/FlightAirlineContract"
    },
    "location": {
      "$ref": "#/components/schemas/FlightLocationContract"
    }
  },
  "required": [
    "codeshareStatus",
    "isCargo",
    "number",
    "status"
  ],
  "additionalProperties": false,
  "name": "AirportFlightContract"
}