I have the following json schema. My plan is to set the value of notifyApprover to true or false depending on the value of AutoApprove. How can i do this ? I am new to JSON schemas.
{
"type": "object",
"title": "Comment",
"properties": {
"AutoApprove": {
"title": "Auto Approve",
"type": "boolean"
},
"notifyApprover": {
"title": "Notify Approver",
"type": "boolean"
}
}
}
I found this which is helpful, just not sure how to implement it for my requirements.