{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/settings-for-a-cinnamon-spice/latest.json",
  "title": "gui structure",
  "description": "GUI structure of Cinnamon extension\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
  "x-lintel": {
    "source": "https://www.schemastore.org/cinnamon-spice-settings.json",
    "sourceSha256": "82a9ddc2b67eb8bd1e0286a21430d07b36e2181e84d9467dc17ac8ac27c12677",
    "fileMatch": [
      "**/*@*/**/settings-schema.json"
    ],
    "parsers": [
      "json"
    ]
  },
  "type": "object",
  "additionalProperties": false,
  "patternProperties": {
    "\\S": {
      "title": "widget",
      "description": "A widget identifier\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "required": [
        "type"
      ],
      "allOf": [
        {
          "if": {
            "properties": {
              "type": {
                "const": "checkbox"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/checkbox-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "entry"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/entry-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "colorchooser"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/colorchooser-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "keybinding"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/keybinding-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "radiogroup"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/radiogroup-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "filechooser"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/filechooser-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "iconfilechooser"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/iconfilechooser-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "combobox"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/combobox-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "spinbutton"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/spinbutton-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "scale"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/scale-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "generic"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/generic-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "header"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/header-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "separator"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/separator-definition"
          }
        },
        {
          "if": {
            "properties": {
              "type": {
                "const": "button"
              }
            }
          },
          "then": {
            "$ref": "#/$defs/button-definition"
          }
        }
      ]
    }
  },
  "$defs": {
    "string-property-partial": {
      "type": "string",
      "minLength": 1,
      "pattern": "\\S"
    },
    "type-property": {
      "title": "type",
      "description": "A type of the widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "string",
      "enum": [
        "checkbox",
        "entry",
        "colorchooser",
        "keybinding",
        "radiogroup",
        "filechooser",
        "iconfilechooser",
        "combobox",
        "spinbutton",
        "scale",
        "generic",
        "header",
        "separator",
        "button"
      ]
    },
    "checkbox-definition": {
      "title": "checkbox",
      "description": "A checkbox widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the checkbox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the checkbox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the checkbox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the checkbox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the checkbox depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "entry-definition": {
      "title": "entry",
      "description": "A text entry widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the text entry\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the text entry\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the text entry\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "string"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the text entry\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the text entry depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "colorchooser-definition": {
      "title": "color chooser",
      "description": "A color chooser widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the color chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the color chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the color chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "string",
          "minLength": 1,
          "examples": [
            "rgba(RED, GREEN, BLUE, ALPHA)",
            "rgb(RED, GREEN, BLUE)",
            "red"
          ]
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the color chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the color chooser depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "keybinding-definition": {
      "title": "keybinding",
      "description": "A keybinding widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the keybinding\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the keybinding\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the keybinding\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "string",
          "examples": [
            "&lt;Control&gt;F8"
          ]
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the keybinding\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the keybinding depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "radiogroup-definition": {
      "title": "radiogroup",
      "description": "A radiogroup widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the radiogroup\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the radiogroup\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the radiogroup from `options`\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": [
            "string",
            "number"
          ]
        },
        "options": {
          "title": "options",
          "description": "Options of the the radiogroup\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "object",
          "additionalProperties": false,
          "minProperties": 1,
          "patternProperties": {
            "\\S": {
              "title": "option",
              "description": "An option of the the radiogroup\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
              "type": [
                "string",
                "number"
              ]
            }
          }
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the radiogroup\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the radiogroup depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "filechooser-definition": {
      "title": "file chooser",
      "description": "A file chooser widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "string"
        },
        "select-dir": {
          "title": "select directory",
          "description": "Whether to allow select just directories for the the file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the file chooser depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "iconfilechooser-definition": {
      "title": "icon file chooser",
      "description": "An icon file chooser widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the icon file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the icon file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the icon file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "string"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the icon file chooser\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the icon file chooser depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "combobox-definition": {
      "title": "combobox",
      "description": "A combobox widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the combobox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the combobox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the combobox from `options`\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "options": {
          "title": "options",
          "description": "Options of the the combobox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "object",
          "additionalProperties": false,
          "minProperties": 1,
          "patternProperties": {
            "\\S": {
              "title": "option",
              "description": "An option of the the combobox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
              "type": [
                "string",
                "number",
                "boolean"
              ]
            }
          }
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the combobox\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the combobox depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "spinbutton-definition": {
      "title": "spinbutton",
      "description": "A spinbutton widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number"
        },
        "min": {
          "title": "minimum",
          "description": "A minimum value of the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number"
        },
        "max": {
          "title": "maximum",
          "description": "A maximum value of the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number"
        },
        "step": {
          "title": "step",
          "description": "A step value of the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number",
          "exclusiveMinimum": 0
        },
        "units": {
          "$ref": "#/$defs/string-property-partial",
          "title": "units",
          "description": "Units of the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "examples": [
            "px"
          ]
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the spinbutton\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the spinbutton depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "scale-definition": {
      "title": "spinbutton",
      "description": "A scale widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the the scale\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the scale\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the scale\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number"
        },
        "min": {
          "title": "minimum",
          "description": "A minimum value of the scale\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number"
        },
        "max": {
          "title": "maximum",
          "description": "A maximum value of the scale\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number"
        },
        "step": {
          "title": "step",
          "description": "A step value of the scale\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "number",
          "exclusiveMinimum": 0
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the scale\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the scale depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "generic-definition": {
      "title": "generic",
      "description": "A header widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the generic widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the generic widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "default": {
          "title": "default",
          "description": "A default value of the generic widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the generic widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the generic widget depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "header-definition": {
      "title": "header",
      "description": "A header widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A content of the header\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the header\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the header depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "separator-definition": {
      "title": "separator",
      "description": "A separator widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the separator\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the separator depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    },
    "button-definition": {
      "title": "button",
      "description": "A button widget\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/$defs/type-property"
        },
        "description": {
          "$ref": "#/$defs/string-property-partial",
          "title": "description",
          "description": "A description of the button\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "tooltip": {
          "$ref": "#/$defs/string-property-partial",
          "title": "tooltip",
          "description": "A tooltip of the the button\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "callback": {
          "$ref": "#/$defs/string-property-partial",
          "title": "callback",
          "description": "A callback of the button without `.this`\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        },
        "indent": {
          "title": "indent",
          "description": "Whether to indent the button\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>",
          "type": "boolean"
        },
        "dependency": {
          "$ref": "#/$defs/string-property-partial",
          "title": "dependency",
          "description": "A checkbox or combobox the button depends on\n<https://projects.linuxmint.com/reference/git/cinnamon-tutorials/xlet-settings-ref.html>"
        }
      },
      "additionalProperties": false
    }
  }
}
