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

# BulkAttributeValueInput Input Type

No description

```graphql
input BulkAttributeValueInput {
  id: ID
  externalReference: String
  values: [String!] @deprecated
  dropdown: AttributeValueSelectableTypeInput
  swatch: AttributeValueSelectableTypeInput
  multiselect: [AttributeValueSelectableTypeInput!]
  numeric: String
  file: String
  contentType: String
  reference: ID
  references: [ID!]
  richText: JSONString
  plainText: String
  boolean: Boolean
  date: Date
  dateTime: DateTime
}
```

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

### Fields

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

#### [`id`](#id) ● [`ID`](/api-reference/miscellaneous/scalars/id.md)

ID of the selected attribute.

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

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

External ID of this attribute.

<a id="dropdown"></a>

#### [`dropdown`](#dropdown) ● [`AttributeValueSelectableTypeInput`](/api-reference/attributes/inputs/attribute-value-selectable-type-input.md)

Attribute value ID.

<a id="swatch"></a>

#### [`swatch`](#swatch) ● [`AttributeValueSelectableTypeInput`](/api-reference/attributes/inputs/attribute-value-selectable-type-input.md)

Attribute value ID.

<a id="multiselect"></a>

#### [`multiselect`](#multiselect) ● [`[AttributeValueSelectableTypeInput!]`](/api-reference/attributes/inputs/attribute-value-selectable-type-input.md)

List of attribute value IDs.

<a id="numeric"></a>

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

Numeric value of an attribute.

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

#### [`file`](#file) ● [`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="reference"></a>

#### [`reference`](#reference) ● [`ID`](/api-reference/miscellaneous/scalars/id.md)

ID of the referenced entity for single reference attribute.

Added in Saleor 3.22

<a id="references"></a>

#### [`references`](#references) ● [`[ID!]`](/api-reference/miscellaneous/scalars/id.md)

List of entity IDs that will be used as references.

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

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

Text content in JSON format.

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

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

Plain text content.

<a id="boolean"></a>

#### [`boolean`](#boolean) ● [`Boolean`](/api-reference/miscellaneous/scalars/boolean.md)

The boolean value of an attribute to resolve. If the passed value is non-existent, it will be created.

<a id="date"></a>

#### [`date`](#date) ● [`Date`](/api-reference/miscellaneous/scalars/date.md)

Represents the date value of the attribute value.

<a id="date-time"></a>

#### [`dateTime`](#date-time) ● [`DateTime`](/api-reference/miscellaneous/scalars/date-time.md)

Represents the date/time value of the attribute value.

Show deprecatedHide deprecated

<a id="values"></a>

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

DEPRECATED

No longer supported

The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created.

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

### Member Of

[`ProductVariantBulkCreateInput`](/api-reference/products/inputs/product-variant-bulk-create-input.md) input  ● [`ProductVariantBulkUpdateInput`](/api-reference/products/inputs/product-variant-bulk-update-input.md) input
