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