mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 12:15:25 +00:00
35 lines
700 B
JSON
35 lines
700 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"approved": {
|
|
"type": "object",
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"default": "Approve"
|
|
},
|
|
"color": {
|
|
"type": "string",
|
|
"default": "green"
|
|
}
|
|
},
|
|
"required": ["label", "color"]
|
|
},
|
|
"rejected": {
|
|
"type": "object",
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"default": "Reject"
|
|
},
|
|
"color": {
|
|
"type": "string",
|
|
"default": "red"
|
|
}
|
|
},
|
|
"required": ["label", "color"]
|
|
}
|
|
},
|
|
"required": ["approved", "rejected"]
|
|
}
|