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

25 lines
416 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CommandExecutionOutputDeltaNotification",
"type": "object",
"required": [
"delta",
"itemId",
"threadId",
"turnId"
],
"properties": {
"delta": {
"type": "string"
},
"itemId": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
}
}