{ "$id": "/schemas/mapping.json#", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "/schemas/mapping.json#/definitions/common" }, { "additionalProperties": false, "dependencies": {}, "patternProperties": { "^(\\$ref|className|map|placeholder|label|name|popOver|quickEdit|sortable|searchable|toggled|fixed)$": {} }, "properties": { "$schema": { "format": "uri", "type": "string", "description": "绑定 JSON 格式说明,可忽略!" }, "type": { "description": "指定为映射展示类型", "enum": ["mapping", "map"], "type": "string" } }, "required": ["type"], "type": "object" } ], "definitions": { "common": { "description": "amis mapping 渲染器格式说明。", "properties": { "$ref": { "$ref": "/schemas/page.json#/definitions/$ref", "description": "引用页面中的定义" }, "className": { "$ref": "/schemas/page.json#/definitions/className", "description": "配置容器 className" }, "map": { "description": "当值命中左侧 Key 时,展示右侧内容,当没有命中时,默认实现 Key 为 *的内容", "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "placeholder": { "description": "占位符", "type": "string" } } }, "test": { "properties": { "type": { "enum": ["map", "mapping"] } } } }, "description": "amis mapping 渲染器格式说明。", "type": "object" }