User: dan@sartography.com clicked save for examples/2-in-depth/events/escalation-events/choose-exampledata.json

This commit is contained in:
sartography-automated-committer 2024-02-21 05:15:35 +00:00
parent 5c3de9f577
commit bfc2368ea2
2 changed files with 23 additions and 2 deletions

View File

@ -3,5 +3,19 @@
"bar",
"fuzz",
"qux"
],
"fruits": [
{
"value": "apples",
"label": "Apples"
},
{
"value": "oranges",
"label": "Oranges"
},
{
"value": "bananas",
"label": "Bananas"
}
]
}

View File

@ -1,6 +1,6 @@
{
"title": "Multiple Choice List",
"description": "Build a multiple choice list with a predefined list of options",
"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": {
"multipleChoicesList": {
@ -16,6 +16,13 @@
]
},
"uniqueItems": true
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
}
}
}