mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 01:08:19 +00:00
26 lines
548 B
JSON
26 lines
548 B
JSON
{
|
|
"title": "Checkbox",
|
|
"description": "A super simple checkbox",
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
],
|
|
"properties": {
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Jose"
|
|
},
|
|
"birth_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Birth date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
},
|
|
"done": {
|
|
"type": "boolean",
|
|
"title": "Are you currently working on Emerson",
|
|
"default": false
|
|
}
|
|
}
|
|
} |