Files
codex-telegram-bot/schemas/v2/ThreadRealtimeSdpNotification.json
2026-05-21 08:40:16 +00:00

18 lines
376 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ThreadRealtimeSdpNotification",
"description": "EXPERIMENTAL - emitted with the remote SDP for a WebRTC realtime session.",
"type": "object",
"required": [
"sdp",
"threadId"
],
"properties": {
"sdp": {
"type": "string"
},
"threadId": {
"type": "string"
}
}
}