mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-24 21:58:18 +00:00
27 lines
499 B
JSON
27 lines
499 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|
|
} |