Bot

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
id string Unique bot identifier.
developerName string Developer name of the bot.
masterLabel string Display label for the bot.
description string Description of the bot.
status string Current status of the bot.
botType string Type of the bot.
language string Primary language of the bot.
activeVersionId string ID of the currently active version.
createdDate string
lastModifiedDate string
url string
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-bot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Bot",
  "title": "Bot",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique bot identifier."
    },
    "developerName": {
      "type": "string",
      "description": "Developer name of the bot."
    },
    "masterLabel": {
      "type": "string",
      "description": "Display label for the bot."
    },
    "description": {
      "type": "string",
      "description": "Description of the bot."
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Inactive"
      ],
      "description": "Current status of the bot."
    },
    "botType": {
      "type": "string",
      "description": "Type of the bot."
    },
    "language": {
      "type": "string",
      "description": "Primary language of the bot."
    },
    "activeVersionId": {
      "type": "string",
      "description": "ID of the currently active version."
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedDate": {
      "type": "string",
      "format": "date-time"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}