{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "JSONRPCNotification",
  "description": "A notification which does not expect a response.",
  "type": "object",
  "required": [
    "method"
  ],
  "properties": {
    "method": {
      "type": "string"
    },
    "params": true
  }
}