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

20 lines
393 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ThreadRealtimeClosedNotification",
"description": "EXPERIMENTAL - emitted when thread realtime transport closes.",
"type": "object",
"required": [
"threadId"
],
"properties": {
"reason": {
"type": [
"string",
"null"
]
},
"threadId": {
"type": "string"
}
}
}