User: maximryzhov88@yandex.ru clicked save for playground/rmgi/test/form2-schema.json

This commit is contained in:
sartography-automated-committer 2024-01-21 17:17:16 +00:00
parent 19b42501a9
commit d2a872476f
2 changed files with 23 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"title": "Форма второго сотрудника", "title": "Multiple Choice List",
"description": "Выберите одно из трёх", "description": "Build a multiple choice list with a predefined list of options",
"properties": { "properties": {
"favoriteFruit": { "favoriteFruit": {
"title": "Select your favorite fruit", "title": "Select your favorite fruit",
@ -8,6 +8,21 @@
"anyOf": [ "anyOf": [
"options_from_task_data_var:fruits" "options_from_task_data_var:fruits"
] ]
},
"multipleChoicesList": {
"type": "array",
"title": "A multiple choices list",
"items": {
"type": "string",
"enum": [
"foo",
"bar",
"fuzz",
"qux"
]
},
"uniqueItems": true
} }
} },
"type": "object"
} }

View File

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