AeroDataBox · JSON Structure

Aerodatabox Flight Leg Delay Contract Structure

Delay statistics of a flight leg

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

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

Properties

number origins destinations

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-leg-delay-contract-structure.json",
  "description": "Delay statistics of a flight leg",
  "type": "object",
  "properties": {
    "number": {
      "minLength": 1,
      "type": "string",
      "description": "Flight number"
    },
    "origins": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FlightDelayContract"
      },
      "description": "Delay statistics of flight on departure at origins",
      "nullable": true
    },
    "destinations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FlightDelayContract"
      },
      "description": "Delay statistics of flight on arrival at destinations",
      "nullable": true
    }
  },
  "required": [
    "number"
  ],
  "additionalProperties": false,
  "name": "FlightLegDelayContract"
}