action adafruit_update_data { label: "Update properties of existing Data" description: "" provider: adafruit method: PATCH path: "/{username}/feeds/{feed_key}/data/{id}" encoding: json input: { type: "object" properties: { feed_key: { type: "string" } id: { type: "string" } username: { type: "string" } } required: ["feed_key", "id", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }