Salesforce · JSON Structure

Salesforce Getconversationentries Structure

Type: object Properties: 1 Required: 1
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Getconversationentries is a JSON Structure definition published by Salesforce, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

conversationEntries

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Getconversationentries",
  "properties": {
    "conversationEntries": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "clientDuration": {
            "type": "integer"
          },
          "clientTimestamp": {
            "type": "integer"
          },
          "identifier": {
            "type": "string"
          },
          "messageText": {
            "type": "string"
          },
          "relatedRecords": {
            "type": "array",
            "description": "",
            "items": {
              "type": "string"
            }
          },
          "sender": {
            "type": "object",
            "properties": {
              "appType": {
                "type": "string"
              },
              "role": {
                "type": "string"
              },
              "subject": {
                "type": "string"
              }
            },
            "required": [
              "appType",
              "role",
              "subject"
            ]
          },
          "serverReceivedTimestamp": {
            "type": "integer"
          }
        },
        "required": [
          "clientDuration",
          "clientTimestamp",
          "identifier",
          "messageText",
          "relatedRecords",
          "sender",
          "serverReceivedTimestamp"
        ]
      }
    }
  },
  "required": [
    "conversationEntries"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}