x-render
x-render copied to clipboard
希望schema中list的items可以支持type="string"
期望的新功能 (describe the expected new feature)
希望schema中list的items可以支持type="string",而不是只支持object类型
简述一下使用场景,便于开发者更好理解新功能的必要性 (describe your scenario for us to understand the need)
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Product", "description": "A product from Acme's catalog", "type": "array", "items": { "type": "string" }, "minItems": 1, "uniqueItems": true } 这样一个基础的schema在form-render 中无法正常使用