You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v1/openapi.yaml
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1314,6 +1314,13 @@ components:
1314
1314
description: A role UUID.
1315
1315
type: string
1316
1316
type: array
1317
+
tabs:
1318
+
description: List of tabs for organizing dashboard widgets into groups.
1319
+
items:
1320
+
$ref: "#/components/schemas/DashboardTab"
1321
+
maxItems: 100
1322
+
nullable: true
1323
+
type: array
1317
1324
tags:
1318
1325
description: List of team names representing ownership of a dashboard.
1319
1326
items:
@@ -1584,6 +1591,35 @@ components:
1584
1591
description: URL of the dashboard.
1585
1592
type: string
1586
1593
type: object
1594
+
DashboardTab:
1595
+
description: Dashboard tab for organizing widgets.
1596
+
properties:
1597
+
id:
1598
+
description: UUID of the tab.
1599
+
example: ""
1600
+
format: uuid
1601
+
type: string
1602
+
name:
1603
+
description: Name of the tab.
1604
+
example: L
1605
+
maxLength: 100
1606
+
minLength: 1
1607
+
type: string
1608
+
widget_ids:
1609
+
description: >-
1610
+
List of widget IDs belonging to this tab. The backend also accepts positional references in @N format (1-indexed) as a convenience for Terraform and other declarative tools.
* List of widget IDs belonging to this tab. The backend also accepts positional references in @N format (1-indexed) as a convenience for Terraform and other declarative tools.
17
+
*/
18
+
"widgetIds": Array<number>;
19
+
/**
20
+
* A container for additional, undeclared properties.
21
+
* This is a holder for any undeclared properties as specified with
22
+
* the 'additionalProperties' keyword in the OAS document.
0 commit comments