AeroDataBox · Schema

GeoCoordinatesContractListingAirportContractSearchResultCollectionContract

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
searchBy object
count integer The number of items in the collection
items array The collection of items
View JSON Schema on GitHub

JSON Schema

aerodatabox-geocoordinatescontractlistingairportcontractsearchresultcoll-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoCoordinatesContractListingAirportContractSearchResultCollectionContract",
  "title": "GeoCoordinatesContractListingAirportContractSearchResultCollectionContract",
  "required": [
    "count",
    "items",
    "searchBy"
  ],
  "type": "object",
  "properties": {
    "searchBy": {
      "$ref": "#/components/schemas/GeoCoordinatesContract"
    },
    "count": {
      "maximum": 2147483647,
      "minimum": 0,
      "type": "integer",
      "description": "The number of items in the collection",
      "format": "int32",
      "readOnly": true
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ListingAirportContract"
      },
      "description": "The collection of items"
    }
  },
  "additionalProperties": false
}