action weatherbit_get_current_airquality_city_city_country_country { label: "Returns current air quality conditions - Given City and/or State, Country." description: "Returns current air quality conditions." provider: weatherbit method: GET path: "/current/airquality?city={city}&country={country}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city: { type: "string" } country: { type: "string" } key: { type: "string" } state: { type: "string" } } required: ["city", "country", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }