From 91fc698a246fd345e7c20a9eb2f73a2773a26e29 Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Wed, 14 Feb 2024 10:26:41 +0000 Subject: [PATCH] User: waqqas.jabbar@gmail.com clicked save for playground/nutech/exclusive-gateway-1/issue-form-schema.json --- .../issue-form-exampledata.json | 16 +++++++++++++++- .../exclusive-gateway-1/issue-form-schema.json | 11 +++++++++-- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/playground/nutech/exclusive-gateway-1/issue-form-exampledata.json b/playground/nutech/exclusive-gateway-1/issue-form-exampledata.json index ab781a38..cd0c5284 100644 --- a/playground/nutech/exclusive-gateway-1/issue-form-exampledata.json +++ b/playground/nutech/exclusive-gateway-1/issue-form-exampledata.json @@ -1,4 +1,18 @@ { "firstName": "Chuck", - "done": false + "done": false, + "fruits": [ + { + "value": "apples", + "label": "Apples" + }, + { + "value": "oranges", + "label": "Oranges" + }, + { + "value": "bananas", + "label": "Bananas" + } + ] } \ No newline at end of file diff --git a/playground/nutech/exclusive-gateway-1/issue-form-schema.json b/playground/nutech/exclusive-gateway-1/issue-form-schema.json index 6eaf442f..66cce983 100644 --- a/playground/nutech/exclusive-gateway-1/issue-form-schema.json +++ b/playground/nutech/exclusive-gateway-1/issue-form-schema.json @@ -1,6 +1,6 @@ { - "title": "Date", - "description": "Create a date field with a date picker (delivery_date).", + "title": "Dropdown list", + "description": "A dropdown list with options pulled form existing Task Data. IMPORTANT - Add 'fruits' to Task Data before using this component!!!", "type": "object", "required": [ "firstName" @@ -21,6 +21,13 @@ "format": "date", "title": "Preferred Delivery Date", "validationErrorMessage": "Date must be today's date or later" + }, + "favoriteFruit": { + "title": "Select your favorite fruit", + "type": "string", + "anyOf": [ + "options_from_task_data_var:fruits" + ] } } } \ No newline at end of file