mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Schema: Create PublicDashboard core kind (#62155)
This commit is contained in:
committed by
GitHub
parent
e8b8a9e276
commit
354f6d9e23
26
kinds/publicdashboard/public_dashboard_kind.cue
Normal file
26
kinds/publicdashboard/public_dashboard_kind.cue
Normal file
@@ -0,0 +1,26 @@
|
||||
package kind
|
||||
|
||||
name: "PublicDashboard"
|
||||
maturity: "merged"
|
||||
|
||||
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
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user