User: dan@sartography.com clicked save for examples/2-in-depth/events/escalation-events/choose-exampledata.json
This commit is contained in:
parent
5c3de9f577
commit
bfc2368ea2
|
@ -3,5 +3,19 @@
|
|||
"bar",
|
||||
"fuzz",
|
||||
"qux"
|
||||
],
|
||||
"fruits": [
|
||||
{
|
||||
"value": "apples",
|
||||
"label": "Apples"
|
||||
},
|
||||
{
|
||||
"value": "oranges",
|
||||
"label": "Oranges"
|
||||
},
|
||||
{
|
||||
"value": "bananas",
|
||||
"label": "Bananas"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue