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

17 lines
285 B
JSON

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