| { | |
| "schema": { | |
| "type": "object", | |
| "properties": { | |
| "inputName": { | |
| "title": "url输入框", | |
| "type": "string", | |
| "format": "url" | |
| }, | |
| "imageName": { | |
| "title": "图片展示", | |
| "type": "string", | |
| "format": "image" | |
| }, | |
| "inputName2": { | |
| "title": "email输入框", | |
| "type": "string", | |
| "format": "email" | |
| }, | |
| "string": { | |
| "title": "正则校验字符串", | |
| "tooltip": "a-z", | |
| "type": "string", | |
| "rules": [ | |
| { | |
| "pattern": "^[a-z]+$" | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| } | |