action aviationdata_country_airport_list_country_airport_list { label: "Country airports. Returns a list of airports for a country code(ISO 3166-1 alpha-2 code)" description: "Required parameters: country code (ISO 3166-1), airport_service_type." provider: aviationdata method: GET path: "/v1/country/code/{country_code}" encoding: json input: { type: "object" properties: { airport_service_type: { type: "string" } country_code: { type: "string" } } required: ["airport_service_type", "country_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }