type CreateGlobalRoleInput struct {
Name string `json:"name" jsonschema:"Global Role name"`
Actions []string `json:"actions" jsonschema:"List of actions (e.g., read, create, update, delete)"`
Scopes []string `json:"scopes" jsonschema:"List of scopes (resource kinds the role applies to)"`
}
type UpdateGlobalRoleInput struct {
Name string `json:"name" jsonschema:"Global Role name"`
Actions []string `json:"actions" jsonschema:"List of actions (e.g., read, create, update, delete)"`
Scopes []string `json:"scopes" jsonschema:"List of scopes (resource kinds the role applies to)"`
}