Files
codex/codex-rs/app-server-protocol/schema/json/v2/CommandExecutionOutputDeltaNotification.json
2026-03-18 14:59:10 -06:00

34 lines
691 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"delta": {
"description": "Best-effort UTF-8 view of the output chunk for backwards compatibility.",
"type": "string"
},
"deltaBase64": {
"default": null,
"description": "Exact raw bytes for the chunk, base64-encoded.",
"type": [
"string",
"null"
]
},
"itemId": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"delta",
"itemId",
"threadId",
"turnId"
],
"title": "CommandExecutionOutputDeltaNotification",
"type": "object"
}