AeroDataBox · Schema

FlightNotificationContract

Flight notification contract

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
flights array Modified/created flight notification
subscription object
balance object
View JSON Schema on GitHub

JSON Schema

aerodatabox-flightnotificationcontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlightNotificationContract",
  "title": "FlightNotificationContract",
  "required": [
    "flights",
    "subscription"
  ],
  "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"
    }
  },
  "additionalProperties": false,
  "description": "Flight notification contract"
}