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

26 lines
500 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"delta": {
"description": "Raw bytes from the command stream (may not be valid UTF-8).",
"type": "string"
},
"itemId": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"delta",
"itemId",
"threadId",
"turnId"
],
"title": "CommandExecutionOutputDeltaNotification",
"type": "object"
}