{ "$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" }