Topic

A topic within an Experience Cloud site

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
id string Unique identifier of the topic
createdDate string
description string
images object
name string Name of the topic
talkingAbout integer Number of people currently talking about this topic
url string
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-topic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Topic",
  "title": "Topic",
  "type": "object",
  "description": "A topic within an Experience Cloud site",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the topic"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "description": {
      "type": "string"
    },
    "images": {
      "type": "object",
      "properties": {
        "coverImageUrl": {
          "type": "string",
          "format": "uri"
        }
      }
    },
    "name": {
      "type": "string",
      "description": "Name of the topic"
    },
    "talkingAbout": {
      "type": "integer",
      "description": "Number of people currently talking about this topic"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}