{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "RealtimeConversationVersion": { "enum": [ "v1", "v2" ], "type": "string" } }, "description": "EXPERIMENTAL - emitted when thread realtime startup is accepted.", "properties": { "sessionId": { "type": [ "string", "null" ] }, "threadId": { "type": "string" }, "version": { "$ref": "#/definitions/RealtimeConversationVersion" } }, "required": [ "threadId", "version" ], "title": "ThreadRealtimeStartedNotification", "type": "object" }