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