Files
codex/codex-rs/app-server-protocol/schema/json/v2/ContextCompactedNotification.json
2026-04-09 20:31:41 -07:00

37 lines
675 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ContextCompactionKind": {
"enum": [
"classic",
"prefix"
],
"type": "string"
}
},
"description": "Deprecated: Use `ContextCompaction` item type instead.",
"properties": {
"kind": {
"anyOf": [
{
"$ref": "#/definitions/ContextCompactionKind"
},
{
"type": "null"
}
]
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"threadId",
"turnId"
],
"title": "ContextCompactedNotification",
"type": "object"
}