StoryInput

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
name string Name of the story.
label string Display label.
sourceDatasetId string ID of the dataset to analyze.
outcomeVariable string Variable to predict.
outcomeGoal string
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-storyinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoryInput",
  "title": "StoryInput",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the story."
    },
    "label": {
      "type": "string",
      "description": "Display label."
    },
    "sourceDatasetId": {
      "type": "string",
      "description": "ID of the dataset to analyze."
    },
    "outcomeVariable": {
      "type": "string",
      "description": "Variable to predict."
    },
    "outcomeGoal": {
      "type": "string",
      "enum": [
        "Maximize",
        "Minimize"
      ]
    }
  },
  "required": [
    "name",
    "sourceDatasetId",
    "outcomeVariable"
  ]
}