{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "RequestId": { "anyOf": [ { "type": "string" }, { "format": "int64", "type": "integer" } ] } }, "properties": { "requestId": { "$ref": "#/definitions/RequestId" }, "threadId": { "type": "string" } }, "required": [ "requestId", "threadId" ], "title": "ServerRequestResolvedNotification", "type": "object" }