action weatherbit_get_history_subhourly_postal_code_postal_code { label: "Returns Historical Observations - Given a Postal Code" description: "Returns Historical Observations - Given a Postal Code." provider: weatherbit method: GET path: "/history/subhourly?postal_code={postal_code}" encoding: json input: { type: "object" properties: { callback: { type: "string" } country: { type: "string" } end_date: { type: "string" } key: { type: "string" } lang: { type: "string" } postal_code: { type: "string" } start_date: { type: "string" } tz: { type: "string" } units: { type: "string" } } required: ["end_date", "key", "postal_code", "start_date"] additionalProperties: false } output: { type: "object" additionalProperties: true } }