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

28 lines
486 B
JSON

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