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

# CategoryTranslatableContent Object

Represents category original translatable fields and related translations.

```graphql
type CategoryTranslatableContent implements Node {
  id: ID!
  categoryId: ID!
  seoTitle: String
  seoDescription: String
  slug: String
  name: String!
  description: JSONString
  descriptionJson: JSONString @deprecated
  translation(languageCode: LanguageCodeEnum!): CategoryTranslation
  category: Category @deprecated
}
```

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

### Fields

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

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

The ID of the category translatable content.

<a id="category-id"></a>

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

The ID of the category to translate.

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

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

SEO title to translate.

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

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

SEO description to translate.

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

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

Slug to translate.

Added in Saleor 3.21

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

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

Name of the category translatable content.

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

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

Category description to translate.

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

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

#### [`translation`](#translation) ● [`CategoryTranslation`](/api-reference/products/objects/category-translation.md)

Returns translated category fields for the given language code.

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

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

A language code to return the translation for category.

Show deprecatedHide deprecated

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

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

DEPRECATED

Use the `description` field instead.

Description of the category.

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

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

#### [`category`](#category) ● [`Category`](/api-reference/products/objects/category.md)

DEPRECATED

Get model fields from the root level queries.

Represents a single category of products.

<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

[`CategoryTranslation`](/api-reference/products/objects/category-translation.md) object

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

### Implemented By

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