Checkbox

Checkbox control on

Schema
{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "title": "Checkbox control",
  "description": "Control that allows user to check and uncheck an option",
  "type": "object",
  "required": [
    "option"
  ],
  "properties": {
    "control": {
      "const": "checkbox"
    },
    "label": {
      "title": "Label",
      "description": "Checkbox label",
      "type": "string"
    },
    "value": {
      "title": "Value",
      "description": "Checkbox value",
      "type": "boolean"
    }
  }
}
Example
{
    "control": "checkbox",
    "label": "Show Header",
    "value": true
},