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

28 lines
571 B
JSON

{
"title": "Select A Pizza",
"description": "Dan's pizzas are the best!",
"type": "object",
"properties": {
"pizza_size": {
"title": "Select your pizza size",
"type": "string",
"anyOf": [
"options_from_task_data_var:pizza_sizes"
]
},
"toppings": {
"type": "array",
"title": "Please select your favorite toppings",
"items": {
"type": "string",
"enum": [
"onions",
"pickles",
"fuzz",
"beer"
]
},
"uniqueItems": true
}
}
}