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

21 lines
348 B
JSON

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