AeroDataBox · Schema

FlightSearchItemContract

Flight record found in the search result.

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
number string Found flight number.
View JSON Schema on GitHub

JSON Schema

aerodatabox-flight-search-item-contract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-schema/aerodatabox-flight-search-item-contract-schema.json",
  "title": "FlightSearchItemContract",
  "description": "Flight record found in the search result.",
  "type": "object",
  "properties": {
    "number": {
      "minLength": 1,
      "type": "string",
      "description": "Found flight number."
    }
  },
  "required": [
    "number"
  ],
  "additionalProperties": false
}