grafana/kinds/publicdashboard/public_dashboard_kind.cue
Ryan McKinley 0f0a53fbbb
Schemas: Add description to kinds metadata (#62638)
* add description to kinds

* omit empty
2023-01-31 17:54:22 -05:00

28 lines
650 B
CUE

package kind
name: "PublicDashboard"
maturity: "merged"
description: "Public dashboard configuration"
lineage: seqs: [
{
schemas: [
// 0.0
{
// Unique public dashboard identifier
uid: string
// Dashboard unique identifier referenced by this public dashboard
dashboardUid: string
// Unique public access token
accessToken?: string
// Flag that indicates if the public dashboard is enabled
isEnabled: bool
// Flag that indicates if annotations are enabled
annotationsEnabled: bool
// Flag that indicates if the time range picker is enabled
timeSelectionEnabled: bool
},
]
},
]