FlightList

Paginated list of flights.

AerospaceDefenseAviationManufacturingConnectivityFortune 100

Properties

Name Type Description
total integer Total number of matching flights.
flights array List of flight records.
View JSON Schema on GitHub

JSON Schema

arinc-messaging-flight-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/united-technologies/refs/heads/main/json-schema/arinc-messaging-flight-list-schema.json",
  "title": "FlightList",
  "description": "Paginated list of flights.",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of matching flights.",
      "example": 20
    },
    "flights": {
      "type": "array",
      "description": "List of flight records.",
      "items": {
        "$ref": "#/components/schemas/Flight"
      }
    }
  }
}