28 lines
596 B
JSON

{
"title": "Multiple Choice List",
"description": "Build a multiple choice list with a predefined list of options",
"type": "object",
"properties": {
"pizza_size": {
"title": "Select your pizza size",
"type": "string",
"anyOf": [
"options_from_task_data_var:pizza_sizes"
]
},
"multipleChoicesList": {
"type": "array",
"title": "Select topipings",
"items": {
"type": "string",
"enum": [
"foo",
"bar",
"fuzz",
"qux"
]
},
"uniqueItems": true
}
}
}