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

28 lines
624 B
JSON

{
"title": "Multiple Choice List",
"description": "Build a multiple choice list with a predefined list of options",
"type": "object",
"properties": {
"pizza_size": {
"title": "Select your pizza size",
"type": "string",
"anyOf": [
"options_from_task_data_var:pizza_sizes"
]
},
"multipleChoicesList": {
"type": "array",
"title": "A multiple choices list",
"items": {
"type": "string",
"enum": [
"onions",
"pepperoni",
"pineapples",
"mushrooms"
]
},
"uniqueItems": true
}
}
}