amis/schemas/switch.json

71 lines
1.9 KiB
JSON

{
"$id": "https://houtai.baidu.com/v2/schemas/switch.json#",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "https://houtai.baidu.com/v2/schemas/switch.json#/definitions/common"
},
{
"additionalProperties": false,
"dependencies": {},
"patternProperties": {
"^(\\$ref|className|trueValue|falseValue|option|placeholder|label|name|popOver|quickEdit|sortable|searchable|toggled|fixed)$": {}
},
"properties": {
"$schema": {
"format": "uri",
"type": "string",
"description": "绑定 JSON 格式说明,可忽略!"
},
"type": {
"const": "switch",
"description": "指定为开关展示类型",
"type": "string"
}
},
"required": ["type"],
"type": "object"
}
],
"definitions": {
"common": {
"description": "amis switch 渲染器格式说明。",
"properties": {
"$ref": {
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/$ref",
"description": "引用页面中的定义"
},
"className": {
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/className",
"description": "配置容器 className"
},
"falseValue": {
"default": false,
"description": "未勾选值"
},
"option": {
"description": "选项说明",
"type": "string"
},
"placeholder": {
"description": "占位符",
"type": "string"
},
"trueValue": {
"default": true,
"description": "勾选值"
}
}
},
"test": {
"properties": {
"type": {
"const": "status"
}
}
}
},
"description": "amis switch 渲染器格式说明。",
"type": "object"
}