{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkingHoursBulkExportDTO",
"title": "WorkingHoursBulkExportDTO",
"type": "object",
"properties": {
"workingHourName": {
"type": "string",
"description": "Name of the working hour shift."
},
"startTime": {
"type": "string",
"description": "Start time of the working hour shift."
},
"endTime": {
"type": "string",
"description": "End time of the working hour shift."
},
"days": {
"type": "array",
"description": "List of days for which this working hour shift is applicable.",
"items": {
"type": "string",
"description": "Day of the week."
}
}
}
}