action weatherbit_get_current_stations_stations { label: "Returns a group of observations given a list of stations" description: "Returns a group of Current Observations - Given a list of Station Call IDs. " provider: weatherbit method: GET path: "/current?stations={stations}" encoding: json input: { type: "object" properties: { callback: { type: "string" } key: { type: "string" } lang: { type: "string" } stations: { type: "string" } units: { type: "string" } } required: ["key", "stations"] additionalProperties: false } output: { type: "object" additionalProperties: true } }