User: brendan.winnacott@myome.com clicked save for playground/myome/pizza/select-pizza-schema.json

This commit is contained in:
sartography-automated-committer 2023-11-20 21:13:44 +00:00
parent 4adbab6981
commit 4d172f4841
2 changed files with 30 additions and 2 deletions

View File

@ -1 +1,16 @@
{}
{
"fruits": [
{
"value": "apples",
"label": "Apples"
},
{
"value": "oranges",
"label": "Oranges"
},
{
"value": "bananas",
"label": "Bananas"
}
]
}

View File

@ -1 +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"
]
}
}
}