AeroDataBox · JSON Structure

Aerodatabox String Aircraft Contract Search Result Collection Contract Structure

StringAircraftContractSearchResultCollectionContract schema from AeroDataBox API

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

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

Properties

searchBy count items

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-string-aircraft-contract-search-result-collection-contract-structure.json",
  "description": "StringAircraftContractSearchResultCollectionContract schema from AeroDataBox API",
  "type": "object",
  "properties": {
    "searchBy": {
      "minLength": 1,
      "type": "string",
      "description": "Search parameter used to find the result. \r\nPlease note, it may be different from the actual input provided!"
    },
    "count": {
      "maximum": 2147483647,
      "minimum": 0,
      "type": "int32",
      "description": "The number of items in the collection",
      "readOnly": true
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AircraftContract"
      },
      "description": "The collection of items"
    }
  },
  "required": [
    "count",
    "items",
    "searchBy"
  ],
  "additionalProperties": false,
  "name": "StringAircraftContractSearchResultCollectionContract"
}