AeroDataBox · Schema
AirportUrlsContract
Airport URLs contract
AviationFlightsAerospaceFlight DataAirport Data
Properties
| Name | Type | Description |
|---|---|---|
| webSite | string | Main web-site of the airport |
| wikipedia | string | Wikipedia page of the airport |
| string | Twitter feed of the airport | |
| liveAtc | string | LiveAtc page of the airport |
| flightRadar | string | FlightRadar page of the airport |
| googleMaps | string | Google Maps URL of the airport |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AirportUrlsContract",
"title": "AirportUrlsContract",
"type": "object",
"properties": {
"webSite": {
"type": "string",
"description": "Main web-site of the airport",
"nullable": true
},
"wikipedia": {
"type": "string",
"description": "Wikipedia page of the airport",
"nullable": true
},
"twitter": {
"type": "string",
"description": "Twitter feed of the airport",
"nullable": true
},
"liveAtc": {
"type": "string",
"description": "LiveAtc page of the airport",
"nullable": true
},
"flightRadar": {
"type": "string",
"description": "FlightRadar page of the airport",
"nullable": true
},
"googleMaps": {
"type": "string",
"description": "Google Maps URL of the airport",
"nullable": true
}
},
"additionalProperties": false,
"description": "Airport URLs contract"
}