mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 16:28:09 +00:00
24 lines
410 B
JSON
24 lines
410 B
JSON
{
|
|
"title": "Checkbox",
|
|
"description": "A super simple checkbox",
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
],
|
|
"properties": {
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Chuck"
|
|
},
|
|
"bio": {
|
|
"type": "string",
|
|
"title": "Bio"
|
|
},
|
|
"done": {
|
|
"type": "boolean",
|
|
"title": "Done?",
|
|
"default": false
|
|
}
|
|
}
|
|
} |