mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* cue mod init github.com/grafana/grafana/dashboard-schemas * dashboard-schemas: Document exporting to OpenAPI Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
17 lines
320 B
CUE
17 lines
320 B
CUE
package transformations
|
|
|
|
// Reorder, hide, or rename fields/columns.
|
|
#Organize: {
|
|
// Transformation ID.
|
|
id: string | *"organize"
|
|
// Configuration options.
|
|
options: {
|
|
// Exclude fields by name.
|
|
excludeByName: {}
|
|
// Set field order by name.
|
|
indexByName: {}
|
|
// Rename a field by name.
|
|
renameByName: {}
|
|
}
|
|
}
|