User: hurairaidrees@gmail.com clicked save for playground/nutech/issue2/manualchecking-schema.json

This commit is contained in:
sartography-automated-committer 2024-02-16 09:37:15 +00:00
parent a04f8d0597
commit 5013822d57
2 changed files with 26 additions and 2 deletions

View File

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

View File

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