Files
codex/codex-rs/app-server-protocol/schema/json/v2/ModelStreamEventNotification.json
2026-03-19 09:26:25 -07:00

23 lines
385 B
JSON

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