{
  "$ref": "#/definitions/Events",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "Events": {
      "additionalProperties": false,
      "properties": {
        "clickEnter": {
          "additionalProperties": false,
          "properties": {
            "id": {
              "type": "string"
            },
            "valid": {
              "type": "boolean"
            },
            "value": {
              "type": "string"
            }
          },
          "required": [
            "value",
            "valid"
          ],
          "type": "object"
        },
        "setVal": {
          "additionalProperties": false,
          "properties": {
            "id": {
              "type": "string"
            },
            "valid": {
              "type": "boolean"
            },
            "value": {
              "type": "string"
            }
          },
          "required": [
            "value",
            "valid",
            "id"
          ],
          "type": "object"
        }
      },
      "required": [
        "setVal",
        "clickEnter"
      ],
      "type": "object"
    }
  }
}
