MessageBody

CloudCRMCustomer ManagementEnterpriseSales

Properties

Name Type Description
messageSegments array
View JSON Schema on GitHub

JSON Schema

salesforce-sales-cloud-messagebody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageBody",
  "title": "MessageBody",
  "type": "object",
  "properties": {
    "messageSegments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "Text",
              "Mention",
              "Hashtag",
              "Link"
            ]
          },
          "text": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        }
      }
    }
  }
}