action weatherbit_get_current_station_station { label: "Returns a Current Observation. - Given a station ID." description: "Returns a Current Observation - Given a station ID." provider: weatherbit method: GET path: "/current?station={station}" encoding: json input: { type: "object" properties: { callback: { type: "string" } include: { type: "string" } key: { type: "string" } lang: { type: "string" } station: { type: "string" } units: { type: "string" } } required: ["key", "station"] additionalProperties: false } output: { type: "object" additionalProperties: true } }