{
  "title": "checkbox",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "description": "<checkbox>标识，选中时触发<checkbox-group>的 change 事件，并携带 <checkbox> 的 value"
    },
    "disabled": {
      "type": "boolean",
      "description": "是否禁用",
      "defaultValue": false
    },
    "checked": {
      "type": "boolean",
      "description": "当前是否选中，可用来设置默认选中",
      "defaultValue": false
    },
    "color": {
      "type": "string",
      "description": "checkbox的颜色，同css的color"
    },
    "aria-label": {
      "type": "string",
      "description": "无障碍访问，（属性）元素的额外描述"
    }
  },
  "additionalProperties": false
}