mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
22 lines
577 B
CUE
22 lines
577 B
CUE
package scuemata
|
|
|
|
// Definition of the shape of a panel plugin's schema declarations in its
|
|
// schema.cue file.
|
|
//
|
|
// Note that these keys do not appear directly in any real JSON artifact;
|
|
// rather, they are composed into panel structures as they are defined within
|
|
// the larger Dashboard schema.
|
|
#PanelSchema: {
|
|
PanelOptions: {...}
|
|
PanelFieldConfig: {...}
|
|
}
|
|
|
|
// A lineage of panel schema
|
|
#PanelLineage: [#PanelSchema, ...#PanelSchema]
|
|
|
|
// Panel plugin-specific Family
|
|
#PanelFamily: {
|
|
lineages: [#PanelLineage, ...#PanelLineage]
|
|
migrations: [...#Migration]
|
|
}
|