18 lines
453 B
JSON
Raw Normal View History

{
"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"
},
"delivery_date": {
"type": "string",
"format": "date",
"title": "Preferred Delivery Date",
"validationErrorMessage": "Date must be today's date or later"
}
}
}