{ "$schema": "https://json-structure.org/draft/v0/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/airport-nearest-relevant-location-structure.json", "title": "Location", "description": "Location structure from Airport Nearest Relevant", "type": "object", "properties": { "type": { "type": "string", "description": "the resource name" }, "subType": { "type": "string", "description": "location sub type" }, "name": { "type": "string", "description": "short name of the location" }, "detailedName": { "type": "string", "description": "detailed name of the location. For a city location it contains city name and country code. For an airport location it contains city name; country code and airport full name" }, "timeZoneOffset": { "type": "string", "description": "timezone offset of the location at the date of the API call (including daylight saving time)" }, "iataCode": { "type": "string", "description": "IATA code of the location. ([IATA table codes](http://www.iata.org/publications/Pages/code-search.aspx) here)" }, "geoCode": { "type": "string" }, "address": { "type": "string" }, "distance": { "type": "string" }, "analytics": { "type": "string" }, "relevance": { "type": "number", "format": "double", "description": "score value calculated based on distance and analytics" } } }