action adafruit_all_group_feed_data { label: "All data for current feed in a specific group" description: "" provider: adafruit method: GET path: "/{username}/groups/{group_key}/feeds/{feed_key}/data" encoding: json input: { type: "object" properties: { end_time: { type: "string" } feed_key: { type: "string" } group_key: { type: "string" } limit: { type: "string" } start_time: { type: "string" } username: { type: "string" } } required: ["feed_key", "group_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }