{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-schema/aerodatabox-string-flight-search-item-contract-search-result-collection-contract-schema.json", "title": "StringFlightSearchItemContractSearchResultCollectionContract", "description": "StringFlightSearchItemContractSearchResultCollectionContract 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": "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" } }, "required": [ "count", "items", "searchBy" ], "additionalProperties": false }