action weatherbit_get_current_airquality_postal_code_postal_code { label: "Returns current air quality conditions - Given a Postal Code." description: "Returns current air quality conditions." provider: weatherbit method: GET path: "/current/airquality?postal_code={postal_code}" encoding: json input: { type: "object" properties: { callback: { type: "string" } country: { type: "string" } key: { type: "string" } postal_code: { type: "string" } } required: ["key", "postal_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }