Skip to content
Snippets Groups Projects
attributes.go 245 B
package model

// Defined attributes
const (
	AttrScope      = "scope"
	AttrAud        = "audience"
	AttrCapability = "capability"
)

// Attributes holds all defined attributes
var Attributes = []string{
	AttrScope,
	AttrAud,
	AttrCapability,
}