{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DashboardGadgetUpdateRequest", "title": "DashboardGadgetUpdateRequest", "additionalProperties": false, "description": "The details of the gadget to update.", "properties": { "color": { "description": "The color of the gadget. Should be one of `blue`, `red`, `yellow`, `green`, `cyan`, `purple`, `gray`, or `white`.", "type": "string", "writeOnly": true }, "position": { "allOf": [ { "$ref": "#/components/schemas/DashboardGadgetPosition" } ], "description": "The position of the gadget." }, "title": { "description": "The title of the gadget.", "type": "string", "writeOnly": true } }, "type": "object" }