BotVersion

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
id string
botId string
versionNumber integer
status string
createdDate string
lastModifiedDate string
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-botversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BotVersion",
  "title": "BotVersion",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "botId": {
      "type": "string"
    },
    "versionNumber": {
      "type": "integer"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Inactive",
        "Draft"
      ]
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}