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

15 lines
404 B
JSON

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