demo-process-models/playground/myome/dylans-pizza-palace/select-toppings-schema.json

28 lines
571 B
JSON

{
"title": "Select your pizza size",
"description": "Only $4 more for Large!",
"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 toppings",
"items": {
"type": "string",
"enum": [
"mushrooms",
"candy",
"pineapple",
"carrots"
]
},
"uniqueItems": true
}
}
}