Salesforce · Schema

Comment-EditRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
body object
View JSON Schema on GitHub

JSON Schema

salesforce-comment-edit-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "body": {
      "type": "object",
      "properties": {
        "messageSegments": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "object",
            "properties": {
              "text": {
                "type": "string",
                "example": "example_value"
              },
              "type": {
                "type": "string",
                "example": "example_value"
              }
            },
            "required": [
              "text",
              "type"
            ]
          }
        }
      },
      "required": [
        "messageSegments"
      ]
    }
  },
  "required": [
    "body"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Comment-EditRequest"
}