Airport schedule contract
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-schema/aerodatabox-airport-fids-contract-schema.json", "title": "AirportFidsContract", "description": "Airport schedule contract", "type": "object", "properties": { "departures": { "type": "array", "items": { "$ref": "#/components/schemas/AirportFlightContract" }, "description": "Departing flights", "nullable": true }, "arrivals": { "type": "array", "items": { "$ref": "#/components/schemas/AirportFlightContract" }, "description": "Arriving flights", "nullable": true } }, "additionalProperties": false }