demo-process-models/playground/dinithi/test-business-rule-task/IceCreamForm1-schema.json

23 lines
365 B
JSON
Raw Normal View History

{
"title": "Select a Pizza!",
"description": "",
"properties": {
"size": {
"type": "string",
"title": "Size",
"enum": [
"Personal",
"Medium",
"Large"
]
},
"toppings": {
"type": "array",
"title": "Toppings"
}
},
"required": [
"size",
"toppings"
]
}