mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 12:25:22 +00:00
36 lines
694 B
JSON
36 lines
694 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"approve": {
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"type": "butt",
|
|
"default": "Approve"
|
|
},
|
|
"color": {
|
|
"type": "string",
|
|
"default": "green"
|
|
}
|
|
},
|
|
"required": ["title", "color"]
|
|
},
|
|
"reject": {
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"type": "string",
|
|
"default": "Reject"
|
|
},
|
|
"color": {
|
|
"type": "string",
|
|
"default": "red"
|
|
}
|
|
},
|
|
"required": ["title", "color"]
|
|
}
|
|
},
|
|
"required": ["approve", "reject"]
|
|
}
|
|
|