{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "WorkLeaveStatus", "required": [ "workLeaveReason", "startDate" ], "properties": { "workLeaveReason": { "$ref": "#/components/schemas/WorkLeaveReason" }, "startDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" } }, "type": "object", "xml": { "name": "workLeaveStatus", "wrapped": true } }