Salesforce · Schema

Inputs

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
contextVariables object
conversationHistory array
utterance string
View JSON Schema on GitHub

JSON Schema

salesforce-inputs-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "contextVariables": {
      "type": "object",
      "example": "example_value"
    },
    "conversationHistory": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "utterance": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "contextVariables",
    "conversationHistory",
    "utterance"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Inputs"
}