AIRecordInsightsResponse

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
recordInsights array
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-airecordinsightsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AIRecordInsightsResponse",
  "title": "AIRecordInsightsResponse",
  "type": "object",
  "properties": {
    "recordInsights": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "recordId": {
            "type": "string"
          },
          "insights": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string"
                },
                "label": {
                  "type": "string"
                },
                "value": {
                  "type": "number"
                },
                "factors": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/PredictionFactor"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}