Files
grafana/apps/folder/kinds/folder.cue
2025-12-15 12:10:43 +01:00

20 lines
221 B
CUE

package folder
foldersV1beta1: {
kind: "Folder"
pluralName: "Folders"
schema: {
spec: {
title: string
description?: string
foo: bool
bar: int
}
}
selectableFields: [
"spec.title",
]
}