FeedbackInput

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
generationId string ID of the generation to provide feedback on.
feedback string Feedback signal.
feedbackText string Optional text feedback.
source string Source of the feedback.
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-feedbackinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeedbackInput",
  "title": "FeedbackInput",
  "type": "object",
  "properties": {
    "generationId": {
      "type": "string",
      "description": "ID of the generation to provide feedback on."
    },
    "feedback": {
      "type": "string",
      "enum": [
        "THUMBS_UP",
        "THUMBS_DOWN"
      ],
      "description": "Feedback signal."
    },
    "feedbackText": {
      "type": "string",
      "description": "Optional text feedback."
    },
    "source": {
      "type": "string",
      "description": "Source of the feedback."
    }
  },
  "required": [
    "generationId",
    "feedback"
  ]
}