{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "WorkLeaveStatusData", "required": [ "userId", "workLeaveReason" ], "properties": { "userId": { "type": "string", "format": "uuid" }, "workLeaveReason": { "$ref": "#/components/schemas/WorkLeaveReason" }, "startDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" } }, "type": "object" }