From 9f3838ea2e5c672ec1f88256e046e74e5944c43e Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Thu, 8 Feb 2024 03:33:13 +0000 Subject: [PATCH] User: waqqas.jabbar@gmail.com added process model file playground/nutech/call-activity-1/select_product_and_quantity.json --- .../select_product_and_quantity.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 playground/nutech/call-activity-1/select_product_and_quantity.json diff --git a/playground/nutech/call-activity-1/select_product_and_quantity.json b/playground/nutech/call-activity-1/select_product_and_quantity.json new file mode 100644 index 00000000..ab5c5abb --- /dev/null +++ b/playground/nutech/call-activity-1/select_product_and_quantity.json @@ -0,0 +1,48 @@ +{ + "title": "Select Product and Quantity", + "type": "object", + "required": [ + "product_name", + "product_quantity" + ], + "properties": { + "product_name": { + "title": "Product Name", + "type": "string", + "oneOf": [ + { + "const": "product_a", + "title": "A" + }, + { + "const": "product_b", + "title": "B" + }, + { + "const": "product_c", + "title": "C" + }, + { + "const": "product_d", + "title": "D" + }, + { + "const": "product_e", + "title": "E" + }, + { + "const": "product_f", + "title": "F" + }, + { + "const": "product_g", + "title": "G" + } + ] + }, + "product_quantity": { + "title": "Quantity", + "type": "integer" + } + } +}