{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HoursOfOperationConfig", "title": "HoursOfOperationConfig", "type": "object", "description": "Contains information about the hours of operation.", "required": [ "Day", "StartTime", "EndTime" ], "properties": { "Day": { "type": "string", "description": "The day that the hours of operation applies to.", "enum": [ "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY" ], "example": "MONDAY" }, "StartTime": { "$ref": "#/components/schemas/HoursOfOperationTimeSlice" }, "EndTime": { "$ref": "#/components/schemas/HoursOfOperationTimeSlice" } } }