mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 16:15:16 +00:00
27 lines
652 B
JSON
27 lines
652 B
JSON
{
|
|
"title": "Vacation Request Form",
|
|
"description": "Please provide the following information and click Submit to initiate your request",
|
|
"type": "object",
|
|
"properties": {
|
|
"details": {
|
|
"type": "string",
|
|
"title": "Details"
|
|
},
|
|
"start_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Start Date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
},
|
|
"end_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "End Date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
}
|
|
},
|
|
"required": [
|
|
"start_date",
|
|
"end_date"
|
|
]
|
|
} |