mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 11:25:33 +00:00
23 lines
610 B
JSON
23 lines
610 B
JSON
{
|
|
"title": "Vacation Request Form",
|
|
"description": "Please complete all of the following fields to tell us about your vacation.",
|
|
"type": "object",
|
|
"properties": {
|
|
"description": {
|
|
"type": "string",
|
|
"title": "Description"
|
|
},
|
|
"start": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Vacation Start Date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
},
|
|
"end": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Vacation End Date",
|
|
"validationErrorMessage": "End Date must be after the start date"
|
|
}
|
|
}
|
|
} |