Outcome

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
field string Field that stores the outcome value.
goal string Optimization goal for the prediction.
label string Label for the outcome.
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-outcome-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Outcome",
  "title": "Outcome",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "description": "Field that stores the outcome value."
    },
    "goal": {
      "type": "string",
      "enum": [
        "Maximize",
        "Minimize"
      ],
      "description": "Optimization goal for the prediction."
    },
    "label": {
      "type": "string",
      "description": "Label for the outcome."
    }
  }
}