> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/graphql/knowledge-graph/object-types/date-attribute.md).

# DateAttribute

An attribute that has a date value.

```graphql
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`](/api/graphql/knowledge-graph/object-types/user.md) object <a href="#created-by" id="created-by"></a>

The user who created this resource.

#### createdOn ● [`DateTime`](/api/graphql/knowledge-graph/scalars/date-time.md) scalar <a href="#created-on" id="created-on"></a>

The creation date of this resource.

#### dateValue ● [`Date`](/api/graphql/knowledge-graph/scalars/date.md) scalar <a href="#date-value" id="date-value"></a>

The date value of this attribute.

#### id ● [`UUID!`](/api/graphql/knowledge-graph/scalars/uuid.md) non-null scalar <a href="#id" id="id"></a>

The universally unique identifier of this node.

#### modifiedBy ● [`User`](/api/graphql/knowledge-graph/object-types/user.md) object <a href="#modified-by" id="modified-by"></a>

The user who last modified this resource.

#### modifiedOn ● [`DateTime`](/api/graphql/knowledge-graph/scalars/date-time.md) scalar <a href="#modified-on" id="modified-on"></a>

The last modified date of this resource.

#### system ● [`Boolean!`](/api/graphql/knowledge-graph/scalars/boolean.md) non-null scalar <a href="#system" id="system"></a>

Whether this resource is reserved by the system.

#### type ● [`AttributeType!`](/api/graphql/knowledge-graph/object-types/attribute-type.md) non-null object <a href="#type" id="type"></a>

The attribute type of this attribute.

### Interfaces

#### [`Attribute`](/api/graphql/knowledge-graph/interfaces/attribute.md) interface

An attribute that is linked to an asset.

#### [`Auditable`](/api/graphql/knowledge-graph/interfaces/auditable.md) interface

An interface implemented by all types holding auditing information.

#### [`Node`](/api/graphql/knowledge-graph/interfaces/node.md) interface

A base interface implemented by all types.

### Member Of

[`Asset`](/api/graphql/knowledge-graph/object-types/asset.md) object
