User: dinithijonline@gmail.com clicked save for playground/dinithi/test-business-rule-task/IceCreamForm1-schema.json

This commit is contained in:
sartography-automated-committer 2023-09-12 20:39:10 +00:00
parent ab0fc1c90c
commit c0a0534acc
1 changed files with 20 additions and 6 deletions

View File

@ -1,6 +1,9 @@
{
"title": "Select a Pizza!",
"description": "",
"required": [
"size", "toppings"
],
"properties": {
"size": {
"type": "string",
@ -13,11 +16,22 @@
},
"toppings": {
"type": "array",
"title": "Toppings"
}
},
"required": [
"size",
"toppings"
"title": "Toppings",
"items": {
"type": "string",
"enum": [
"Pepperoni",
"Cucumber",
"Spam",
"Anchovies",
"Salsa",
"Squash",
"Peanuts",
"Octopus Tenticles",
"Chicken Feet"
]
},
"uniqueItems": true
}
}
}