action adafruit_get_permission { label: "Returns Permission based on ID" description: "" provider: adafruit method: GET 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 } }