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

# PageTranslation Object

Represents page translations.

```graphql
type PageTranslation implements Node {
  id: ID!
  language: LanguageDisplay!
  seoTitle: String
  seoDescription: String
  slug: String
  title: String
  content: JSONString
  contentJson: JSONString @deprecated
  translatableContent: PageTranslatableContent
}
```

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

### Fields

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

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

The ID of the page 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 page slug.

Added in Saleor 3.21

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

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

Translated page title.

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

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

Translated content of the page.

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

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

#### [`translatableContent`](#translatable-content) ● [`PageTranslatableContent`](/api-reference/pages/objects/page-translatable-content.md)

Represents the page fields to translate.

Show deprecatedHide deprecated

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

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

DEPRECATED

Use the `content` field instead.

Translated description of the page.

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

[`Page`](/api-reference/pages/objects/page.md) object  ● [`PageTranslatableContent`](/api-reference/pages/objects/page-translatable-content.md) object

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

### Implemented By

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