{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ModelRerouteReason": { "enum": [ "highRiskCyberActivity" ], "type": "string" } }, "properties": { "fromModel": { "type": "string" }, "reason": { "$ref": "#/definitions/ModelRerouteReason" }, "threadId": { "type": "string" }, "toModel": { "type": "string" }, "turnId": { "type": "string" } }, "required": [ "fromModel", "reason", "threadId", "toModel", "turnId" ], "title": "ModelReroutedNotification", "type": "object" }