{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "McpServerEventNotification": {
      "properties": {
        "method": {
          "type": "string"
        },
        "params": true
      },
      "required": [
        "method",
        "params"
      ],
      "type": "object"
    }
  },
  "properties": {
    "notification": {
      "$ref": "#/definitions/McpServerEventNotification"
    },
    "subscriptionId": {
      "type": "string"
    }
  },
  "required": [
    "notification",
    "subscriptionId"
  ],
  "title": "McpServerEventStreamNotification",
  "type": "object"
}