AeroDataBox · JSON Structure

Aerodatabox Flight Notification Item Contract Structure

Flight notification message contract

Type: object Properties: 15 Required: 7
AviationFlightsAerospaceFlight DataAirport Data

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

Properties

notificationSummary notificationRemark greatCircleDistance departure arrival flightPlan lastUpdatedUtc 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-flight-notification-item-contract-structure.json",
  "description": "Flight notification message contract",
  "type": "object",
  "properties": {
    "notificationSummary": {
      "type": "string",
      "description": "Human-readable summary of the flight status update",
      "nullable": true
    },
    "notificationRemark": {
      "type": "string",
      "description": "Human-readable remark to the flight status update",
      "nullable": true
    },
    "greatCircleDistance": {
      "$ref": "#/components/schemas/Distance"
    },
    "departure": {
      "$ref": "#/components/schemas/FlightAirportMovementContract"
    },
    "arrival": {
      "$ref": "#/components/schemas/FlightAirportMovementContract"
    },
    "flightPlan": {
      "$ref": "#/components/schemas/FlightPlanContract"
    },
    "lastUpdatedUtc": {
      "type": "datetime",
      "description": "Time (UTC) of the latest update of flight information (excluding Location)"
    },
    "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": [
    "arrival",
    "codeshareStatus",
    "departure",
    "isCargo",
    "lastUpdatedUtc",
    "number",
    "status"
  ],
  "additionalProperties": false,
  "name": "FlightNotificationItemContract"
}