amis/schemas/iframe.json

83 lines
2.1 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"$id": "https://houtai.baidu.com/v2/schemas/iframe.json#",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "https://houtai.baidu.com/v2/schemas/iframe.json#/definitions/common"
},
{
"additionalProperties": false,
"dependencies": {},
"patternProperties": {
"^(\\$ref|src|style|className|bodyClassName|body|size)$": {}
},
"properties": {
"$schema": {
"format": "uri",
"type": "string",
"description": "绑定 JSON 格式说明,可忽略!"
},
"type": {
"const": "iframe",
"description": "指定为iframe类型",
"type": "string"
}
},
"required": ["type"]
}
],
"definitions": {
"common": {
"description": "amis iframe 渲染器格式说明。https://baidu.github.io/amis/docs/renderers#iframe",
"properties": {
"$ref": {
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/$ref",
"description": "引用页面中的定义"
},
"src": {
"type": "string",
"description": "iframe 地址"
},
"width": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "iframe 的宽度"
},
"height": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "iframe 的高度"
},
"style": {
"description": "样式表"
},
"className": {
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/className",
"description": "配置容器 className"
}
}
},
"test": {
"properties": {
"type": {
"const": "iframe"
}
}
}
},
"description": "amis iframe 渲染器格式说明。https://baidu.github.io/amis/docs/renderers#iframe",
"type": "object"
}