31 lines
634 B
JSON
Raw Normal View History

{
"title": "Build your Pizza!",
"description": "Select the size and toppings, we'll do the rest!",
"type": "object",
"required": [
"pizza_size"
],
"properties": {
"pizza_size": {
"title": "What size pizza would you like?",
"type": "string",
"anyOf": [
"options_from_task_data_var:pizza_sizes"
]
},
"toppings": {
"type": "array",
"title": "Select Toppings",
"items": {
"type": "string",
"enum": [
"pepperoni",
"onions",
"mushrooms",
"pickles"
]
},
"uniqueItems": true
}
}
}