AeroDataBox · JSON Structure

Aerodatabox Flight Plan Contract Structure

Flight plan contract

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

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

Properties

flightRules flightType revisionNo status route altitude airspeed lastUpdatedUtc

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-plan-contract-structure.json",
  "description": "Flight plan contract",
  "type": "object",
  "properties": {
    "flightRules": {
      "$ref": "#/components/schemas/FlightRules"
    },
    "flightType": {
      "$ref": "#/components/schemas/FlightType"
    },
    "revisionNo": {
      "type": "int32",
      "description": "No. of revision of the flight plan",
      "nullable": true
    },
    "status": {
      "$ref": "#/components/schemas/FlightPlanStatus"
    },
    "route": {
      "minLength": 1,
      "type": "string",
      "description": "Route information for the flight as filed in the flight plan"
    },
    "altitude": {
      "$ref": "#/components/schemas/DistanceFlightPlanUnitContract"
    },
    "airspeed": {
      "$ref": "#/components/schemas/SpeedFlightPlanUnitContract"
    },
    "lastUpdatedUtc": {
      "type": "datetime",
      "description": "Time (UTC) of the latest known update to the flight plan"
    }
  },
  "required": [
    "lastUpdatedUtc",
    "route"
  ],
  "additionalProperties": false,
  "name": "FlightPlanContract"
}