action adafruit_create_group_feed { label: "Create a new Feed in a Group" description: "" provider: adafruit method: POST path: "/{username}/groups/{group_key}/feeds" encoding: json input: { type: "object" properties: { group_key: { type: "string" } username: { type: "string" } } required: ["group_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }