action weatherbit_get_alerts_lat_lat_lon_lon { label: "Returns severe weather alerts issued by meteorological agencies - Given a lat/lon." description: "Returns severe weather alerts issued by meteorological agencies - given a lat, and a lon." provider: weatherbit method: GET path: "/alerts?lat={lat}&lon={lon}" encoding: json input: { type: "object" properties: { callback: { type: "string" } key: { type: "string" } lat: { type: "string" } lon: { type: "string" } } required: ["key", "lat", "lon"] additionalProperties: false } output: { type: "object" additionalProperties: true } }