diff --git a/playground/nutech/issue2/manualchecking-exampledata.json b/playground/nutech/issue2/manualchecking-exampledata.json index 9e26dfee..2c78a2fd 100644 --- a/playground/nutech/issue2/manualchecking-exampledata.json +++ b/playground/nutech/issue2/manualchecking-exampledata.json @@ -1 +1,16 @@ -{} \ No newline at end of file +{ + "fruits": [ + { + "value": "apples", + "label": "Apples" + }, + { + "value": "oranges", + "label": "Oranges" + }, + { + "value": "bananas", + "label": "Bananas" + } + ] +} \ No newline at end of file diff --git a/playground/nutech/issue2/manualchecking-schema.json b/playground/nutech/issue2/manualchecking-schema.json index 0db3279e..1c674972 100644 --- a/playground/nutech/issue2/manualchecking-schema.json +++ b/playground/nutech/issue2/manualchecking-schema.json @@ -1,3 +1,14 @@ { - -} + "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", + "properties": { + "favoriteFruit": { + "title": "Select your favorite fruit", + "type": "string", + "anyOf": [ + "options_from_task_data_var:fruits" + ] + } + } +} \ No newline at end of file