demo-process-models/playground/dan/pizza-palace/pizza-order-schema.json

28 lines
594 B
JSON

{
"title": "Build your Pizza!",
"description": "Select the size and toppings, we'll do the rest!",
"type": "object",
"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
}
}
}