action adafruit_replace_permission { label: "Replace an existing Permission" description: "" provider: adafruit method: PUT path: "/{username}/{type}/{type_id}/acl/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } type: { type: "string" } type_id: { type: "string" } username: { type: "string" } } required: ["id", "type", "type_id", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }