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

Attribute

An attribute that is linked to an asset.

interface Attribute {
  createdBy: User
  createdOn: DateTime
  id: UUID!
  modifiedBy: User
  modifiedOn: DateTime
  system: Boolean!
  type: AttributeType!
}

Fields

createdBy ● User object

The user who created this resource.

createdOn ● DateTime scalar

The creation date of this resource.

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.

system ● Boolean! non-null scalar

Whether this resource is reserved by the system.

type ● AttributeType! non-null object

The attribute type of this attribute.

Member Of

Asset object

Implemented By

BooleanAttribute object ● DateAttribute object ● MultiValueAttribute object ● NumericAttribute object ● StringAttribute object

Last updated

Was this helpful?