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

18 lines
377 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ThreadRealtimeErrorNotification",
"description": "EXPERIMENTAL - emitted when thread realtime encounters an error.",
"type": "object",
"required": [
"message",
"threadId"
],
"properties": {
"message": {
"type": "string"
},
"threadId": {
"type": "string"
}
}
}