User: dan@sartography.com clicked save for playground/dan/pizza-palace-20/select-pizza-uischema.json

This commit is contained in:
sartography-automated-committer 2023-11-20 21:13:47 +00:00
parent 4d172f4841
commit d2b5a3b99d
2 changed files with 21 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"title": "Dropdown list",
"description": "A dropdown list with options pulled form existing Task Data. IMPORTANT - Add 'fruits' to Task Data before using this component!!!",
"title": "Multiple Choice List",
"description": "Build a multiple choice list with a predefined list of options",
"type": "object",
"properties": {
"favoriteFruit": {
@ -9,6 +9,20 @@
"anyOf": [
"options_from_task_data_var:fruits"
]
},
"multipleChoicesList": {
"type": "array",
"title": "A multiple choices list",
"items": {
"type": "string",
"enum": [
"foo",
"bar",
"fuzz",
"qux"
]
},
"uniqueItems": true
}
}
}

View File

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