Files
codex/codex-rs/app-server-protocol/schema/json/v2/ThreadUndoCompletedNotification.json
2026-02-23 08:31:57 -08:00

27 lines
434 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"message": {
"type": [
"string",
"null"
]
},
"success": {
"type": "boolean"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"success",
"threadId",
"turnId"
],
"title": "ThreadUndoCompletedNotification",
"type": "object"
}