action stormglass_get_forecast { label: "Get hourly forecasts by coordinates" description: "Get forecast info for the given coordinates. For every hour and property, you will get a list of weather sources and their values." provider: stormglass method: GET path: "/forecast" encoding: json input: { type: "object" properties: { lat: { type: "string" } lng: { type: "string" } } required: ["lat", "lng"] additionalProperties: false } output: { type: "object" additionalProperties: true } }