User: admin@spiffworkflow.org added process model file misc/qa/bpmn-model-testing/composite-test-model-with-all-elements/review-form-schema.json

This commit is contained in:
sartography-automated-committer 2024-07-19 09:59:29 +00:00
parent 54c90c47eb
commit c84087669a

View File

@ -0,0 +1,27 @@
{
"title": "A Simple Form to test Radio Buttons",
"description": "Simple Radio button",
"properties": {
"approval": {
"title": "Review",
"type": "string",
"oneOf": [
{
"const": "Approve",
"title": "Approve"
},
{
"const": "Reject",
"title": "Reject"
},
{
"const": "Needmoreinfo",
"title": "Need more info"
}
]
},
"required": [
"schoolyear"
]
}
}