{
  "$ref": "#/definitions/Events",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "Events": {
      "additionalProperties": false,
      "properties": {
        "footerClick": {
          "additionalProperties": false,
          "properties": {
            "elClick": {
              "type": "string"
            }
          },
          "required": [
            "elClick"
          ],
          "type": "object"
        },
        "layoutStatus": {
          "additionalProperties": false,
          "properties": {
            "size": {
              "enum": [
                "large",
                "small"
              ],
              "type": "string"
            },
            "width": {
              "type": "number"
            }
          },
          "required": [
            "width",
            "size"
          ],
          "type": "object"
        },
        "navbarDropDownClick": {
          "additionalProperties": false,
          "properties": {
            "key": {
              "type": "string"
            }
          },
          "required": [
            "key"
          ],
          "type": "object"
        },
        "navbarSlotClick": {
          "additionalProperties": false,
          "properties": {
            "side": {
              "enum": [
                "left",
                "right",
                "center"
              ],
              "type": "string"
            }
          },
          "required": [
            "side"
          ],
          "type": "object"
        },
        "offcanvasswitch": {
          "additionalProperties": false,
          "properties": {
            "isOpen": {
              "type": "boolean"
            }
          },
          "required": [
            "isOpen"
          ],
          "type": "object"
        },
        "pageChange": {
          "additionalProperties": false,
          "properties": {
            "page": {
              "type": "string"
            }
          },
          "required": [
            "page"
          ],
          "type": "object"
        }
      },
      "required": [
        "offcanvasswitch",
        "pageChange",
        "navbarDropDownClick",
        "footerClick",
        "layoutStatus",
        "navbarSlotClick"
      ],
      "type": "object"
    }
  }
}

