> 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/multi-value-attribute.md).

# MultiValueAttribute

An attribute that has multiple values from a predefined list of possible values.

```graphql
type MultiValueAttribute implements Attribute, Auditable, Node {
  createdBy: User
  createdOn: DateTime
  id: UUID!
  modifiedBy: User
  modifiedOn: DateTime
  stringValues: String
  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.

#### 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.

#### stringValues ● [`String`](/api/graphql/knowledge-graph/scalars/string.md) scalar <a href="#string-values" id="string-values"></a>

The list of values of this attribute in the CSV format.

#### 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
