x-render icon indicating copy to clipboard operation
x-render copied to clipboard

希望schema中list的items可以支持type="string"

Open wuxinzhe097 opened this issue 3 years ago • 0 comments

期望的新功能 (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 中无法正常使用

wuxinzhe097 avatar Jul 13 '22 01:07 wuxinzhe097