The list of gadgets on the dashboard.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DashboardGadgetResponse", "title": "DashboardGadgetResponse", "additionalProperties": false, "description": "The list of gadgets on the dashboard.", "properties": { "gadgets": { "description": "The list of gadgets.", "items": { "$ref": "#/components/schemas/DashboardGadget" }, "readOnly": true, "type": "array" } }, "required": [ "gadgets" ], "type": "object" }