diff --git a/examples/0-2-basic-example/norris-schema.json b/examples/0-2-basic-example/norris-schema.json index 43dc727f..647ae12b 100644 --- a/examples/0-2-basic-example/norris-schema.json +++ b/examples/0-2-basic-example/norris-schema.json @@ -1,6 +1,6 @@ { - "title": "Checkbox", - "description": "A super simple checkbox", + "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", @@ -63,6 +63,13 @@ "type": "boolean", "title": "Done?", "default": false + }, + "favoriteFruit": { + "title": "Select your favorite fruit", + "type": "string", + "anyOf": [ + "options_from_task_data_var:fruits" + ] } } } \ No newline at end of file