2023-11-20 21:13:43 +00:00
|
|
|
{
|
2023-11-20 21:13:48 +00:00
|
|
|
"title": "Multiple Choice List",
|
|
|
|
"description": "Build a multiple choice list with a predefined list of options",
|
2023-11-20 21:13:43 +00:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2023-11-20 21:15:00 +00:00
|
|
|
"pizza_size": {
|
2023-11-20 21:13:43 +00:00
|
|
|
"title": "Select your favorite fruit",
|
|
|
|
"type": "string",
|
|
|
|
"anyOf": [
|
|
|
|
"options_from_task_data_var:fruits"
|
|
|
|
]
|
2023-11-20 21:13:48 +00:00
|
|
|
},
|
|
|
|
"multipleChoicesList": {
|
|
|
|
"type": "array",
|
|
|
|
"title": "A multiple choices list",
|
|
|
|
"items": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"foo",
|
|
|
|
"bar",
|
|
|
|
"fuzz",
|
|
|
|
"qux"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"uniqueItems": true
|
2023-11-20 21:13:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|