{
  "title": "radio",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "description": "<radio/> 标识。当该 <radio/> 选中时，<radio-group/> 的 change 事件会携带 <radio/> 的 value"
    },
    "checked": {
      "type": "boolean",
      "description": "当前是否选中",
      "defaultValue": false
    },
    "disabled": {
      "type": "boolean",
      "description": "是否禁用",
      "defaultValue": false
    },
    "color": {
      "type": "string",
      "description": "radio 的颜色，同 css 的 color",
      "defaultValue": "#F0250F"
    }
  },
  "additionalProperties": false
}