mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 17:08:28 +00:00
31 lines
568 B
JSON
31 lines
568 B
JSON
{
|
|
"title": "Choose Your Ice Cream!",
|
|
"description": "",
|
|
"required": [
|
|
"flavor", "toppings"
|
|
],
|
|
"properties": {
|
|
"flavor": {
|
|
"type": "string",
|
|
"title": "Flavor",
|
|
"enum": [
|
|
"Vanila",
|
|
"Chocolate",
|
|
"Strawberry"
|
|
]
|
|
},
|
|
"toppings": {
|
|
"type": "array",
|
|
"title": "Toppings",
|
|
"items": {
|
|
"type": "string",
|
|
"enum": [
|
|
"Cashew",
|
|
"Peanuts",
|
|
"Chocolate Sprinkles"
|
|
]
|
|
},
|
|
"uniqueItems": true
|
|
}
|
|
}
|
|
} |