action weatherbit_get_history_airquality_city_city_country_country { label: "Returns 72 hours of historical quality conditions - Given City and/or State, Country." description: "Returns historical air quality conditions." provider: weatherbit method: GET path: "/history/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 } }