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