User: morteza.poudat@matplus.eu clicked save for playground/matplus/norm-digitalisation/options-standard-exampledata.json

This commit is contained in:
sartography-automated-committer 2024-02-28 12:46:35 +00:00
parent 19d45017ff
commit 4721a801a3
2 changed files with 26 additions and 4 deletions

View File

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

View File

@ -1,11 +1,19 @@
{
"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!!!",
"properties": {
"done": {
"type": "boolean",
"title": "Done?",
"default": false
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
}
}
},
"type": "object"
}