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

# AttributeValueTranslatableContent Object

Represents attribute value's original translatable fields and related translations.

```graphql
type AttributeValueTranslatableContent implements Node {
  id: ID!
  attributeValueId: ID!
  name: String!
  richText: JSONString
  plainText: String
  translation(languageCode: LanguageCodeEnum!): AttributeValueTranslation
  attributeValue: AttributeValue @deprecated
  attribute: AttributeTranslatableContent
}
```

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

### Fields

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

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

The ID of the attribute value translatable content.

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

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

The ID of the attribute value to translate.

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

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

Name of the attribute value to translate.

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

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

Attribute value.

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)

Attribute plain text value.

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

#### [`translation`](#translation) ● [`AttributeValueTranslation`](/api-reference/attributes/objects/attribute-value-translation.md)

Returns translated attribute value fields for the given language code.

<a id="attribute-value-translatable-content-translation-language-code"></a>

##### [`languageCode`](#attribute-value-translatable-content-translation-language-code) ● [`LanguageCodeEnum!`](/api-reference/miscellaneous/enums/language-code-enum.md)

A language code to return the translation for attribute value.

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

#### [`attribute`](#attribute) ● [`AttributeTranslatableContent`](/api-reference/attributes/objects/attribute-translatable-content.md)

Associated attribute that can be translated.

Show deprecatedHide deprecated

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

#### [`attributeValue`](#attribute-value) ● [`AttributeValue`](/api-reference/attributes/objects/attribute-value.md)

DEPRECATED

Get model fields from the root level queries.

Represents a value of an attribute.

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

### Interfaces

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

#### [`Node`](/api-reference/miscellaneous/interfaces/node.md)

An object with an ID

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

### Member Of

[`AttributeValueTranslation`](/api-reference/attributes/objects/attribute-value-translation.md) object  ● [`PageTranslatableContent`](/api-reference/pages/objects/page-translatable-content.md) object  ● [`ProductTranslatableContent`](/api-reference/products/objects/product-translatable-content.md) object  ● [`ProductVariantTranslatableContent`](/api-reference/products/objects/product-variant-translatable-content.md) object

<a id="implemented-by"></a>

### Implemented By

[`TranslatableItem`](/api-reference/miscellaneous/unions/translatable-item.md) union
