action adafruit_remove_feed_from_group { label: "Remove a Feed from a Group" description: "" provider: adafruit method: POST path: "/{username}/groups/{group_key}/remove" encoding: json input: { type: "object" properties: { feed_key: { type: "string" } group_key: { type: "string" } username: { type: "string" } } required: ["group_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }