demo-process-models/examples/1-basic-concepts/1-4-decisions/select-a-pizza-schema.json

37 lines
648 B
JSON
Raw Normal View History

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