From 1e055b739db66e7c3748bf00da35a960acf6ad5a Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Thu, 8 Feb 2024 03:33:25 +0000 Subject: [PATCH] User: waqqas.jabbar@gmail.com added process model file playground/nutech/call-activity-1/select_product_color.json --- .../call-activity-1/select_product_color.json | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 playground/nutech/call-activity-1/select_product_color.json diff --git a/playground/nutech/call-activity-1/select_product_color.json b/playground/nutech/call-activity-1/select_product_color.json new file mode 100644 index 00000000..265d982a --- /dev/null +++ b/playground/nutech/call-activity-1/select_product_color.json @@ -0,0 +1,31 @@ +{ + "title": "Select Product Color", + "type": "object", + "required": [ + "product_color" + ], + "properties": { + "product_color": { + "title": "Product Color", + "type": "string", + "oneOf": [ + { + "const": "white", + "title": "White" + }, + { + "const": "black", + "title": "Black" + }, + { + "const": "gray", + "title": "Gray" + }, + { + "const": "navy", + "title": "Navy" + } + ] + } + } +}