{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/drchrono/json-schema/workhours.json",
"title": "WorkHours",
"type": "object",
"properties": {
"start_time": {
"type": "string",
"description": "start time of the work hour",
"title": "Start time"
},
"enabled": {
"type": "boolean",
"description": "whether the work hour is enabled",
"title": "Enabled"
},
"id": {
"readOnly": true,
"type": "integer",
"description": "unique ID of the work hour",
"title": "ID"
},
"end_time": {
"type": "string",
"description": "end time of the work hour",
"title": "End time"
}
}
}