action adafruit_update_dashboard { label: "Update properties of an existing Dashboard" description: "" provider: adafruit method: PATCH path: "/{username}/dashboards/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } username: { type: "string" } } required: ["id", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }