User: cris@sartography.com clicked save for playground/cris-tolbert/vacation-approval/approval-uischema.json

This commit is contained in:
sartography-automated-committer 2023-10-26 15:00:20 +00:00
parent e699ce955f
commit eb1622a9f6
2 changed files with 19 additions and 2 deletions

View File

@ -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"

View File

@ -1,5 +1,8 @@
{
"bio": {
"ui:widget": "textarea"
},
"multipleChoicesList": {
"ui:widget": "checkboxes"
}
}