Comment

A comment on a feed element

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
id string
body object
createdDate string
feedElement object
likes object
user object
url string
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-comment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Comment",
  "title": "Comment",
  "type": "object",
  "description": "A comment on a feed element",
  "properties": {
    "id": {
      "type": "string"
    },
    "body": {
      "$ref": "#/components/schemas/MessageBody"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "feedElement": {
      "$ref": "#/components/schemas/ActorReference"
    },
    "likes": {
      "$ref": "#/components/schemas/LikePage"
    },
    "user": {
      "$ref": "#/components/schemas/ActorReference"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}