For the complete documentation index, see llms.txt. This page is also available as Markdown.

Role

The role that a user has, for example, *Steward* or *Admin*.

type Role implements Auditable, Node {
  createdBy: User
  createdOn: DateTime
  global: Boolean
  id: UUID!
  modifiedBy: User
  modifiedOn: DateTime
  name: String!
  system: Boolean!
}

Fields

createdBy ● User object

The user who created this resource.

createdOn ● DateTime scalar

The creation date of this resource.

global ● Boolean scalar

Whether the role is defined at the global level.

id ● UUID! non-null scalar

The universally unique identifier of this node.

modifiedBy ● User object

The user who last modified this resource.

modifiedOn ● DateTime scalar

The last modified date of this resource.

name ● String! non-null scalar

The name of this role.

system ● Boolean! non-null scalar

Whether this resource is reserved by the system.

Interfaces

Auditable interface

An interface implemented by all types holding auditing information.

Node interface

A base interface implemented by all types.

Member Of

Responsibility object

Last updated

Was this helpful?