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

Responsibility

A link between a user or group with a role and an asset, domain, or community. It is mutually exclusive.

type Responsibility implements Auditable, Node {
  asset: Asset
  community: Community
  createdBy: User
  createdOn: DateTime
  domain: Domain
  id: UUID!
  modifiedBy: User
  modifiedOn: DateTime
  role: Role!
  system: Boolean!
  user: User
  userGroup: UserGroup
}

Fields

The asset related to this responsibility.

The community related to this responsibility.

The user who created this resource.

The creation date of this resource.

The domain related to this responsibility.

Responsibility.idUUID! non-null scalar

The universally unique identifier of this node.

The user who last modified this resource.

The last modified date of this resource.

Responsibility.roleRole! non-null object

The user role related to this responsibility.

Responsibility.systemBoolean! non-null scalar

Whether this resource is reserved by the system.

The user related to this responsibility. It is empty if the responsibility is related to a group.

The group related to this responsibility. It is empty if the responsibility is related to a user.

Interfaces

Auditable interface

An interface implemented by all types holding auditing information.

Node interface

A base interface implemented by all types.

Member Of

Asset object ● Community object ● Domain object ● Organization interface

Last updated

Was this helpful?