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

DateAttribute

An attribute that has a date value.

type DateAttribute implements Attribute, Auditable, Node {
  createdBy: User
  createdOn: DateTime
  dateValue: Date
  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.

dateValue ● Date scalar

The date value of this attribute.

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.

Interfaces

Attribute interface

An attribute that is linked to an asset.

Auditable interface

An interface implemented by all types holding auditing information.

Node interface

A base interface implemented by all types.

Member Of

Asset object

Last updated

Was this helpful?