{ "$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" } } }