mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 17:08:28 +00:00
31 lines
634 B
JSON
31 lines
634 B
JSON
{
|
|
"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
|
|
}
|
|
}
|
|
} |