AeroDataBox · JSON Structure

Aerodatabox Airport Distance Time Contract Structure

Contract containing information on distance and approximate flight time between specified airports

Type: object Properties: 4 Required: 4
AviationFlightsAerospaceFlight DataAirport Data

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

Properties

from to greatCircleDistance approxFlightTime

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-airport-distance-time-contract-structure.json",
  "description": "Contract containing information on distance and approximate flight time\r\nbetween specified airports",
  "type": "object",
  "properties": {
    "from": {
      "$ref": "#/components/schemas/ListingAirportContract"
    },
    "to": {
      "$ref": "#/components/schemas/ListingAirportContract"
    },
    "greatCircleDistance": {
      "$ref": "#/components/schemas/Distance"
    },
    "approxFlightTime": {
      "type": "string",
      "description": "Approximate flight time based on re-calculation of great circle distance\r\nagainst statistical duration average of multiple flights covered similar\r\ndistance before.",
      "format": "date-span"
    }
  },
  "required": [
    "approxFlightTime",
    "from",
    "greatCircleDistance",
    "to"
  ],
  "additionalProperties": false,
  "name": "AirportDistanceTimeContract"
}