action weatherbit_get_current_postal_code_postal_code { label: "Returns a current observation by postal code." description: "Returns current weather observation - Given a Postal Code. " provider: weatherbit method: GET path: "/current?postal_code={postal_code}" encoding: json input: { type: "object" properties: { callback: { type: "string" } country: { type: "string" } include: { type: "string" } key: { type: "string" } lang: { type: "string" } marine: { type: "string" } postal_code: { type: "string" } units: { type: "string" } } required: ["key", "postal_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }