PromptTemplateInput

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
developerName string
masterLabel string
description string
promptText string
type string
relatedEntity string
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-prompttemplateinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PromptTemplateInput",
  "title": "PromptTemplateInput",
  "type": "object",
  "properties": {
    "developerName": {
      "type": "string"
    },
    "masterLabel": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "promptText": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "salesGeneration",
        "fieldGeneration",
        "recordSummary",
        "chatGeneration",
        "flexibleGeneration"
      ]
    },
    "relatedEntity": {
      "type": "string"
    }
  },
  "required": [
    "developerName",
    "masterLabel",
    "promptText",
    "type"
  ]
}