grafana/kinds/team/team_kind.cue

18 lines
341 B
CUE
Raw Normal View History

package kind
name: "Team"
maturity: "merged"
description: "A team is a named grouping of Grafana users to which access control rules may be assigned."
lineage: schemas: [{
version: [0, 0]
schema: {
spec: {
// Name of the team.
name: string
// Email of the team.
email?: string
} @cuetsy(kind="interface")
}
}]