66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
||
"$id": "https://houtai.baidu.com/v2/schemas/alert.json#",
|
||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
"allOf": [
|
||
{
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/alert.json#/definitions/common"
|
||
},
|
||
{
|
||
"additionalProperties": false,
|
||
"dependencies": {},
|
||
"patternProperties": {
|
||
"^(\\$ref|className|body|level|showCloseButton)$": {}
|
||
},
|
||
"properties": {
|
||
"$schema": {
|
||
"format": "uri",
|
||
"type": "string",
|
||
"description": "绑定 JSON 格式说明,可忽略!"
|
||
},
|
||
"type": {
|
||
"const": "alert",
|
||
"description": "指定为提示框类型",
|
||
"type": "string"
|
||
}
|
||
},
|
||
"required": ["type"]
|
||
}
|
||
],
|
||
"definitions": {
|
||
"common": {
|
||
"description": "amis Wrapper 渲染器,格式说明。https://baidu.github.io/amis/docs/renderers/Alert",
|
||
"properties": {
|
||
"$ref": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/$ref",
|
||
"description": "引用页面中的定义"
|
||
},
|
||
"body": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/container",
|
||
"description": "内容区域"
|
||
},
|
||
"className": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/className",
|
||
"description": "配置外层 className"
|
||
},
|
||
"level": {
|
||
"description": "提示类型",
|
||
"enum": ["info", "success", "warning", "danger"]
|
||
},
|
||
"showCloseButton": {
|
||
"description": "是否显示关闭按钮",
|
||
"type": "boolean"
|
||
}
|
||
}
|
||
},
|
||
"test": {
|
||
"properties": {
|
||
"type": {
|
||
"const": "alert"
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"description": "amis Alert 渲染器,格式说明。https://baidu.github.io/amis/docs/renderers/Alert",
|
||
"type": "object"
|
||
}
|