Snowflake · Schema

SendFeedbackRequest

The request object for sending user feedback on Cortex Analyst responses

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
request_id string Request id associated with the feedback
positive boolean Whether the response was good (true) or bad (false)
feedback_message string The text for the detailed feedback message
View JSON Schema on GitHub

JSON Schema

cortex-analyst-send-feedback-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SendFeedbackRequest",
  "type": "object",
  "description": "The request object for sending user feedback on Cortex Analyst responses",
  "properties": {
    "request_id": {
      "type": "string",
      "description": "Request id associated with the feedback"
    },
    "positive": {
      "type": "boolean",
      "description": "Whether the response was good (true) or bad (false)"
    },
    "feedback_message": {
      "type": "string",
      "description": "The text for the detailed feedback message"
    }
  }
}