AeroDataBox · Schema

FlightDataGeneralAvailabilityContract

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
minAvailableLocalDate string Date of the oldest flight stored (based on scheduled local times) If not specified, no flight data available
maxAvailableLocalDate string Date of the most recent flight stored (based on scheduled local times) If not specified, no flight data available
View JSON Schema on GitHub

JSON Schema

aerodatabox-flightdatageneralavailabilitycontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlightDataGeneralAvailabilityContract",
  "title": "FlightDataGeneralAvailabilityContract",
  "type": "object",
  "properties": {
    "minAvailableLocalDate": {
      "type": "string",
      "description": "Date of the oldest flight stored (based on scheduled local times)\r\nIf not specified, no flight data available",
      "format": "date-time",
      "nullable": true
    },
    "maxAvailableLocalDate": {
      "type": "string",
      "description": "Date of the most recent flight stored (based on scheduled local times)\r\nIf not specified, no flight data available",
      "format": "date-time",
      "nullable": true
    }
  },
  "additionalProperties": false
}