{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AirportFidsContract", "title": "AirportFidsContract", "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, "description": "Airport schedule contract" }