> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/products/llms.txt)
> Source: https://docs.saleor.io/api-reference/products/objects/category-translation

# CategoryTranslation Object

Represents category translations.

```graphql
type CategoryTranslation implements Node {
  id: ID!
  language: LanguageDisplay!
  seoTitle: String
  seoDescription: String
  slug: String
  name: String
  description: JSONString
  descriptionJson: JSONString @deprecated
  translatableContent: CategoryTranslatableContent
}
```

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

### Fields

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

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

The ID of the category translation.

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

#### [`language`](#language) ● [`LanguageDisplay!`](/api-reference/miscellaneous/objects/language-display.md)

Translation language.

<a id="seo-title"></a>

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

Translated SEO title.

<a id="seo-description"></a>

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

Translated SEO description.

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

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

Translated category slug.

Added in Saleor 3.21

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

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

Translated category name.

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

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

Translated description of the category.

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

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

#### [`translatableContent`](#translatable-content) ● [`CategoryTranslatableContent`](/api-reference/products/objects/category-translatable-content.md)

Represents the category fields to translate.

Show deprecatedHide deprecated

<a id="description-json"></a>

#### [`descriptionJson`](#description-json) ● [`JSONString`](/api-reference/miscellaneous/scalars/jsonstring.md)

DEPRECATED

Use the `description` field instead.

Translated description of the category.

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

<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

[`Category`](/api-reference/products/objects/category.md) object  ● [`CategoryTranslatableContent`](/api-reference/products/objects/category-translatable-content.md) object

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

### Implemented By

[`TranslationTypes`](/api-reference/miscellaneous/unions/translation-types.md) union
