action adafruit_replace_block { label: "Replace an existing Block" description: "" provider: adafruit method: PUT path: "/{username}/dashboards/{dashboard_id}/blocks/{id}" encoding: json input: { type: "object" properties: { dashboard_id: { type: "string" } id: { type: "string" } username: { type: "string" } } required: ["dashboard_id", "id", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }