{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ClientInfo": { "properties": { "name": { "type": "string" }, "title": { "type": [ "string", "null" ] }, "version": { "type": "string" } }, "required": [ "name", "version" ], "type": "object" } }, "properties": { "clientInfo": { "$ref": "#/definitions/ClientInfo" } }, "required": [ "clientInfo" ], "title": "InitializeParams", "type": "object" }