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

37 lines
684 B
JSON

{
"title": "Select a Pizza!",
"description": "",
"required": [
"size", "toppings"
],
"properties": {
"size": {
"type": "string",
"title": "Size",
"enum": [
"Personal",
"Medium",
"Large"
]
},
"toppings": {
"type": "array",
"title": "Toppings",
"items": {
"type": "string",
"enum": [
"Pepperoni",
"Cucumber",
"Spam",
"Anchovies",
"Salsa",
"Squash",
"Peanuts",
"Octopus Tenticles",
"Chicken Feet"
]
},
"uniqueItems": true
}
}
}