{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ThreadRealtimeTranscriptDoneNotification",
  "description": "EXPERIMENTAL - final transcript text emitted when realtime completes a transcript part.",
  "type": "object",
  "required": [
    "role",
    "text",
    "threadId"
  ],
  "properties": {
    "role": {
      "type": "string"
    },
    "text": {
      "description": "Final complete text for the transcript part.",
      "type": "string"
    },
    "threadId": {
      "type": "string"
    }
  }
}