27 lines
652 B
JSON
Raw Normal View History

{
"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"
]
}