demo-process-models/playground/nutech/issue2/manualchecking-schema.json

19 lines
512 B
JSON

{
"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": {
"documents_collected": {
"type": "boolean",
"title": "Documents Collected",
"default": false
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
}
},
"type": "object"
}