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

This commit is contained in:
sartography-automated-committer 2024-02-16 09:32:36 +00:00
parent 421bce0f44
commit 956fb3b151
2 changed files with 25 additions and 4 deletions

View File

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

View File

@ -1,11 +1,19 @@
{ {
"title": "Checkbox", "title": "Dropdown list",
"description": "Authority Letter/Unit Demand Collected?", "description": "A dropdown list with options pulled form existing Task Data. IMPORTANT - Add 'fruits' to Task Data before using this component!!!",
"properties": { "properties": {
"documents_collected": { "documents_collected": {
"type": "boolean", "type": "boolean",
"title": "Documents Collected", "title": "Documents Collected",
"default": false "default": false
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
} }
} },
"type": "object"
} }