From 4c2e2e16473ff77b94922da6b4480ffaf8f62169 Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Tue, 12 Sep 2023 20:25:56 +0000 Subject: [PATCH] User: dinithijonline@gmail.com added process model file playground/dinithi/test-business-rule-task/IceCreamForm.json --- .../test-business-rule-task/IceCreamForm.json | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 playground/dinithi/test-business-rule-task/IceCreamForm.json diff --git a/playground/dinithi/test-business-rule-task/IceCreamForm.json b/playground/dinithi/test-business-rule-task/IceCreamForm.json new file mode 100644 index 00000000..d6032e13 --- /dev/null +++ b/playground/dinithi/test-business-rule-task/IceCreamForm.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