Properties
| Name | Type | Description |
|---|---|---|
| airportIcao | string | Airport ICAO code |
| from | object | |
| to | object | |
| departuresDelayInformation | object | |
| arrivalsDelayInformation | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AirportDelayContract",
"title": "AirportDelayContract",
"required": [
"airportIcao",
"arrivalsDelayInformation",
"departuresDelayInformation",
"from",
"to"
],
"type": "object",
"properties": {
"airportIcao": {
"minLength": 1,
"type": "string",
"description": "Airport ICAO code"
},
"from": {
"$ref": "#/components/schemas/DateTimeContract"
},
"to": {
"$ref": "#/components/schemas/DateTimeContract"
},
"departuresDelayInformation": {
"$ref": "#/components/schemas/FlightBatchDelayContract"
},
"arrivalsDelayInformation": {
"$ref": "#/components/schemas/FlightBatchDelayContract"
}
},
"additionalProperties": false
}