Files
codex/codex-rs/app-server-protocol/schema/json/v2/CommandExecTerminateParams.json
Ruslan Nigmatullin 0628035988 cr
2026-03-06 13:25:07 -08:00

15 lines
404 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Terminate a running `command/exec` session.",
"properties": {
"processId": {
"description": "Client-supplied, connection-scoped `processId` from the original `command/exec` request.",
"type": "string"
}
},
"required": [
"processId"
],
"title": "CommandExecTerminateParams",
"type": "object"
}