AeroDataBox · Schema
StringFlightSearchItemContractSearchResultCollectionContract
AviationFlightsAerospaceFlight DataAirport Data
Properties
| Name | Type | Description |
|---|---|---|
| searchBy | string | Search parameter used to find the result. Please note, it may be different from the actual input provided! |
| count | integer | The number of items in the collection |
| items | array | The collection of items |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StringFlightSearchItemContractSearchResultCollectionContract",
"title": "StringFlightSearchItemContractSearchResultCollectionContract",
"required": [
"count",
"items",
"searchBy"
],
"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": "integer",
"description": "The number of items in the collection",
"format": "int32",
"readOnly": true
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FlightSearchItemContract"
},
"description": "The collection of items"
}
},
"additionalProperties": false
}