2023-11-20 13:29:31 +00:00
|
|
|
{
|
2023-11-20 13:43:16 +00:00
|
|
|
"title": "Dropdown list",
|
|
|
|
"description": "A dropdown list with options pulled form existing Task Data. IMPORTANT - Add 'fruits' to Task Data before using this component!!!",
|
2023-11-20 13:29:31 +00:00
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"firstName"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"firstName": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "First name",
|
2023-11-20 13:37:30 +00:00
|
|
|
"default": "Jose"
|
2023-11-20 13:41:14 +00:00
|
|
|
},
|
2023-11-20 13:41:47 +00:00
|
|
|
"birth_date": {
|
2023-11-20 13:41:14 +00:00
|
|
|
"type": "string",
|
|
|
|
"format": "date",
|
2023-11-20 13:42:27 +00:00
|
|
|
"title": "Birth date",
|
2023-11-20 13:41:14 +00:00
|
|
|
"validationErrorMessage": "Date must be today's date or later"
|
2023-11-20 13:42:39 +00:00
|
|
|
},
|
|
|
|
"done": {
|
|
|
|
"type": "boolean",
|
2023-11-20 13:43:00 +00:00
|
|
|
"title": "Are you currently working on Emerson",
|
2023-11-20 13:42:39 +00:00
|
|
|
"default": false
|
2023-11-20 13:43:16 +00:00
|
|
|
},
|
2023-11-20 13:44:09 +00:00
|
|
|
"GFS_subdepartment": {
|
2023-11-20 13:44:22 +00:00
|
|
|
"title": "Select your GFS subdepartment",
|
2023-11-20 13:43:16 +00:00
|
|
|
"type": "string",
|
|
|
|
"anyOf": [
|
|
|
|
"options_from_task_data_var:fruits"
|
|
|
|
]
|
2023-11-20 13:29:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|