{
  "$ref": "#/definitions/Component",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "Component": {
      "additionalProperties": false,
      "properties": {
        "companybrandname": {
          "type": "string"
        },
        "companylogouri": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "noburger": {
          "type": "string"
        },
        "style": {
          "type": "string"
        },
        "switchopen": {
          "enum": [
            "yes",
            "no"
          ],
          "type": "string"
        },
        "usermenu": {
          "$ref": "#/definitions/IUserMenu"
        }
      },
      "required": [
        "companybrandname",
        "companylogouri"
      ],
      "type": "object"
    },
    "IUserMenu": {
      "additionalProperties": false,
      "properties": {
        "imgUri": {
          "type": "string"
        },
        "list": {
          "items": {
            "$ref": "#/definitions/IUserMenuListItem"
          },
          "type": "array"
        }
      },
      "required": [
        "imgUri"
      ],
      "type": "object"
    },
    "IUserMenuListItem": {
      "additionalProperties": false,
      "properties": {
        "badge": {
          "type": "number"
        },
        "group": {
          "type": "string"
        },
        "key": {
          "type": "string"
        },
        "label": {
          "type": "string"
        }
      },
      "required": [
        "key",
        "label"
      ],
      "type": "object"
    }
  }
}
