95ea758475
* annotation legacy store with api server, read only * Add a feature flag for annotations app * implement list filters * annotations are not addressable by ID for read operations * fix registry apps test * add ownership for an app * disable linter * typo, of course * fix go workspace * update workspace * copy annotation app in dockerfile * update workspace --------- Co-authored-by: Tania B. <10127682+undef1nd@users.noreply.github.com>
18 lines
253 B
CUE
18 lines
253 B
CUE
package kinds
|
|
|
|
annotationv0alpha1: {
|
|
kind: "Annotation"
|
|
pluralName: "Annotations"
|
|
schema: {
|
|
spec: {
|
|
text: string
|
|
time: int64
|
|
timeEnd?: int64
|
|
dashboardUID?: string
|
|
panelID?: int64
|
|
tags?: [...string]
|
|
}
|
|
}
|
|
}
|
|
|