mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 22:48:19 +00:00
33 lines
834 B
JSON
33 lines
834 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!!!",
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
],
|
|
"properties": {
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Jose"
|
|
},
|
|
"birth_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Birth date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
},
|
|
"done": {
|
|
"type": "boolean",
|
|
"title": "Are you currently working on Emerson",
|
|
"default": false
|
|
},
|
|
"GFS_subdepartment": {
|
|
"title": "Select your GFS subdepartment",
|
|
"type": "string",
|
|
"anyOf": [
|
|
"options_from_task_data_var:fruits"
|
|
]
|
|
}
|
|
}
|
|
} |