action anchore_delete_feed_group { label: "delete_feed_group" description: "Delete the group data and disable the group itself" provider: anchore method: DELETE path: "/system/feeds/{feed}/{group}" encoding: json input: { type: "object" properties: { feed: { type: "string" } group: { type: "string" } } required: ["feed", "group"] additionalProperties: false } output: { type: "object" additionalProperties: true } }