{ "$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" }