> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/attributes/llms.txt)
> Source: https://docs.saleor.io/api-reference/attributes/inputs/attribute-value-create-input

# AttributeValueCreateInput Input Type

No description

```graphql
input AttributeValueCreateInput {
  value: String
  richText: JSONString @deprecated
  plainText: String @deprecated
  fileUrl: String
  contentType: String
  externalReference: String
  name: String!
}
```

<a id="fields"></a>

### Fields

<a id="value"></a>

#### [`value`](#value) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Represent value of the attribute value (e.g. color values for swatch attributes).

<a id="file-url"></a>

#### [`fileUrl`](#file-url) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

URL of the file attribute. Every time, a new value is created.

<a id="content-type"></a>

#### [`contentType`](#content-type) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

File content type.

<a id="external-reference"></a>

#### [`externalReference`](#external-reference) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

External ID of this attribute value.

<a id="name"></a>

#### [`name`](#name) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

Name of a value displayed in the interface.

Show deprecatedHide deprecated

<a id="rich-text"></a>

#### [`richText`](#rich-text) ● [`JSONString`](/api-reference/miscellaneous/scalars/jsonstring.md)

DEPRECATED

The rich text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute.

Represents the text of the attribute value, includes formatting.

Rich text format. For reference see [https://editorjs.io/](https://editorjs.io/)

<a id="plain-text"></a>

#### [`plainText`](#plain-text) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

DEPRECATED

The plain text attribute hasn't got predefined value, so can be specified only from instance that supports the given attribute.

Represents the text of the attribute value, plain text without formatting.

<a id="member-of"></a>

### Member Of

[`AttributeCreateInput`](/api-reference/attributes/inputs/attribute-create-input.md) input  ● [`attributeValueCreate`](/api-reference/attributes/mutations/attribute-value-create.md) mutation
