> 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: Comment Content Revision V1

# Type: Comment Content Revision Object

# Link: https://dev.wix.com/docs/api-reference/crm/community/feedback-moderation/comments/comment-content-revision-v1/comment-content-revision-object.md

## Description: A saved previous version of a comment's content, with its author and date.
This is separate from the current comment and its revision number.

## Schema:

```json
 Type: Comment Content Revision Object | type: CommentContentRevision
 Description: A saved previous version of a comment's content, with its author and date.
This is separate from the current comment and its revision number.
       - name: id  | type: string | description: Content revision ID.
       - name: commentId  | type: string | description: ID of the comment this content revision belongs to.
       - name: createdDate  | type: string | description: Date and time associated with the saved content. If unavailable, the date and time the history record was created is returned.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: content  | type: RichContent | description: Previous content as a Rich Content document.
           - name: nodes  | type: Array<Node> | description: Node objects representing a rich content document.
               - name: type  | type: string | description: Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format.
               - name: id  | type: string | description: Node ID.
               - name: nodes  | type: Array<Node> | description: A list of child nodes.
               - name: style  | type: NodeStyle | description: Padding and background color styling for the node.
           - name: metadata  | type: Metadata | description: Object metadata.
               - name: version  | type: number | description: Schema version.
               - name: createdTimestamp  | type: string | description: When the object was created.
               - name: updatedTimestamp  | type: string | description: When the object was most recently updated.
               - name: id  | type: string | description: Object ID.
           - name: documentStyle  | type: DocumentStyle | description: Global styling for header, paragraph, block quote, and code block nodes in the object.
               - name: headerOne  | type: TextNodeStyle | description: Styling for H1 nodes.
               - name: headerTwo  | type: TextNodeStyle | description: Styling for H2 nodes.
               - name: headerThree  | type: TextNodeStyle | description: Styling for H3 nodes.
               - name: headerFour  | type: TextNodeStyle | description: Styling for H4 nodes.
               - name: headerFive  | type: TextNodeStyle | description: Styling for H5 nodes.
               - name: headerSix  | type: TextNodeStyle | description: Styling for H6 nodes.
               - name: paragraph  | type: TextNodeStyle | description: Styling for paragraph nodes.
               - name: blockquote  | type: TextNodeStyle | description: Styling for block quote nodes.
               - name: codeBlock  | type: TextNodeStyle | description: Styling for code block nodes.
       - name: author  | type: RevisionAuthor | description: Author of the saved content, when available.

```