mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 22:25:14 +00:00
36 lines
778 B
JSON
36 lines
778 B
JSON
{
|
|
"title": "Checkbox",
|
|
"description": "A super simple checkbox",
|
|
"required": [
|
|
"check1",
|
|
"check2",
|
|
"check3"
|
|
],
|
|
"properties": {
|
|
"check1": {
|
|
"type": "boolean",
|
|
"title": "Required but no default set"
|
|
},
|
|
"check2": {
|
|
"type": "boolean",
|
|
"title": "Required and default set to false",
|
|
"default": false,
|
|
"description": "Check box 2 description"
|
|
},
|
|
"check3": {
|
|
"type": "boolean",
|
|
"title": "Required default set to true",
|
|
"default": true
|
|
},
|
|
"check4": {
|
|
"type": "boolean",
|
|
"title": "Not required default set to false",
|
|
"default": false
|
|
},
|
|
"check5": {
|
|
"type": "boolean",
|
|
"title": "Not required default set to true",
|
|
"default": true
|
|
}
|
|
}
|
|
} |