User: cris@sartography.com clicked save for playground/cris-tolbert/vacation-approval/approval-uischema.json
This commit is contained in:
parent
e699ce955f
commit
eb1622a9f6
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"title": "Text Area",
|
||||
"description": "A larger resizable area to enter longer text. (field name will be 'bio')",
|
||||
"title": "Multiple Choice List",
|
||||
"description": "Build a multiple choice list with a predefined list of options",
|
||||
"properties": {
|
||||
"done": {
|
||||
"type": "boolean",
|
||||
|
@ -10,6 +10,20 @@
|
|||
"bio": {
|
||||
"type": "string",
|
||||
"title": "Bio"
|
||||
},
|
||||
"multipleChoicesList": {
|
||||
"type": "array",
|
||||
"title": "A multiple choices list",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"foo",
|
||||
"bar",
|
||||
"fuzz",
|
||||
"qux"
|
||||
]
|
||||
},
|
||||
"uniqueItems": true
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
{
|
||||
"bio": {
|
||||
"ui:widget": "textarea"
|
||||
},
|
||||
"multipleChoicesList": {
|
||||
"ui:widget": "checkboxes"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue