diff --git a/playground/dinithi/test-business-rule-task/select-a-pizza-schema.json b/playground/dinithi/test-business-rule-task/select-a-pizza-schema.json new file mode 100644 index 00000000..bf83d189 --- /dev/null +++ b/playground/dinithi/test-business-rule-task/select-a-pizza-schema.json @@ -0,0 +1,37 @@ +{ + "title": "Select a Pizza!", + "description": "", + "required": [ + "size", "toppings" + ], + "properties": { + "size": { + "type": "string", + "title": "Size", + "enum": [ + "Personal", + "Medium", + "Large" + ] + }, + "toppings": { + "type": "array", + "title": "Toppings", + "items": { + "type": "string", + "enum": [ + "Pepperoni", + "Cucumber", + "Spam", + "Anchovies", + "Salsa", + "Squash", + "Peanuts", + "Octopus Tenticles", + "Chicken Feet" + ] + }, + "uniqueItems": true + } + } +} \ No newline at end of file