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
}
}
}