AeroDataBox · JSON Structure

Aerodatabox Flight Notification Contract Structure

Flight notification contract

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

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

Properties

flights subscription balance

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-contract-structure.json",
  "description": "Flight notification contract",
  "type": "object",
  "properties": {
    "flights": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FlightNotificationItemContract"
      },
      "description": "Modified/created flight notification"
    },
    "subscription": {
      "$ref": "#/components/schemas/SubscriptionContract"
    },
    "balance": {
      "$ref": "#/components/schemas/SubscriptionBalanceContract"
    }
  },
  "required": [
    "flights",
    "subscription"
  ],
  "additionalProperties": false,
  "name": "FlightNotificationContract"
}