> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Resource: Translation Published Content

# Type: Published Content Object

# Link: https://dev.wix.com/docs/api-reference/business-management/multilingual/translation/translation-published-content/published-content-object.md

## Schema:

```json
 Type: Published Content Object | type: PublishedContent
       - name: id  | type: string | description: Published content ID.
           - name: value  | type: string | description: 
       - name: schemaKey  | type: SchemaKey | description: Schema key of the published content.
           - name: appId  | type: string | description: ID of the app that created the schema.
           - name: entityType  | type: string | description: A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`.
           - name: scope  | type: string | description: Scope of the translation schema.
               enum: GLOBAL, SITE
       - name: entityId  | type: string | description: A unique identifier defined by the app developer to differentiate translation content for various entities within the site. For example, if an app developer is creating translation content for blog posts, the `entityId` can be `'blog-posts-1'`.
       - name: locale  | type: string | description: Published content locale.
       - name: fields  | type: Array<PublishedContentField> | description: List of fields that have been translated and published for the given locale.
           - name: schemaFieldKey  | type: string | description: Unique string identifier that links a specific content field to its corresponding field in the schema.
           - name: sequenceIds  | type: Array<string> | description: For repeated fields. Contains the IDs of the messages linked to this field.
       - name: parentEntityId  | type: string | description: A reference to the parent content. For example, if the content is a menu item, this property would contain the `entityId` of the menu it belongs to.
       - name: extendedFields  | type: ExtendedFields | description: Custom field data for the published content object.
           - name: namespaces  | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured.  You can only access fields for which you have the appropriate permissions.  Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).

```