CommentPage

Paginated list of comments

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
comments array
currentPageToken string
currentPageUrl string
nextPageToken string
nextPageUrl string
total integer
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-commentpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommentPage",
  "title": "CommentPage",
  "type": "object",
  "description": "Paginated list of comments",
  "properties": {
    "comments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Comment"
      }
    },
    "currentPageToken": {
      "type": "string"
    },
    "currentPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "nextPageToken": {
      "type": "string"
    },
    "nextPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "total": {
      "type": "integer"
    }
  }
}