{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ModelRequestError": { "properties": { "code": { "type": [ "string", "null" ] }, "message": { "type": "string" }, "param": { "type": [ "string", "null" ] }, "type": { "type": "string" } }, "required": [ "message", "type" ], "type": "object" } }, "properties": { "error": { "$ref": "#/definitions/ModelRequestError" }, "requestId": { "type": "string" }, "threadId": { "type": "string" }, "turnId": { "type": "string" } }, "required": [ "error", "requestId", "threadId", "turnId" ], "title": "ModelRequestFailedNotification", "type": "object" }