AeroDataBox · Schema

AirportFidsContract

Airport schedule contract

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
departures array Departing flights
arrivals array Arriving flights
View JSON Schema on GitHub

JSON Schema

aerodatabox-airportfidscontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AirportFidsContract",
  "title": "AirportFidsContract",
  "type": "object",
  "properties": {
    "departures": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AirportFlightContract"
      },
      "description": "Departing flights",
      "nullable": true
    },
    "arrivals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AirportFlightContract"
      },
      "description": "Arriving flights",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Airport schedule contract"
}