> 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 Content # Type: Content Object # Link: https://dev.wix.com/docs/api-reference/business-management/multilingual/translation/translation-content/content-object.md ## Schema: ```json Type: Content Object | type: Content - name: id | type: string | description: Translation content ID. - name: value | type: string | description: - name: schemaId | type: string | description: Translation schema ID. - 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: Translation content locale. - name: fields | type: object | description: List of fields for the translation content. This property uses a string to map to a `ContentField` (`Map`). The string serves as a key, which you'll need to access each field in the content and when referencing a translation schema. - 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: publishStatus | type: string | description: The aggregated published status across all content fields. enum: UNKNOWN_PUBLISH_STATUS, UNPUBLISHED, PARTIALLY_PUBLISHED, PUBLISHED - name: previewField | type: string | description: Contains the value of the preview field if the schema defines one. - name: createdDate | type: string | description: Date and time the translation content was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the translation content was updated. ```