DiscoveryModel

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
id string
name string
label string
status string
storyId string
algorithmType string
predictionType string
createdDate string
lastModifiedDate string
url string
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-discoverymodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DiscoveryModel",
  "title": "DiscoveryModel",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Inactive",
        "Training",
        "Failed"
      ]
    },
    "storyId": {
      "type": "string"
    },
    "algorithmType": {
      "type": "string"
    },
    "predictionType": {
      "type": "string"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedDate": {
      "type": "string",
      "format": "date-time"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}