mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-24 21:58:18 +00:00
20 lines
353 B
JSON
20 lines
353 B
JSON
|
{
|
||
|
"title": "Select User",
|
||
|
"description": "If the following user logged in ...",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"user"
|
||
|
],
|
||
|
"properties": {
|
||
|
"user": {
|
||
|
"title": "Select a user from the dropdown list",
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"Nelson",
|
||
|
"Malala",
|
||
|
"Harriet",
|
||
|
"Martin"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|