Contains the opening hours for a range of days in the week. E.g. monday - tuesday may contain the same opening hours and are grouped in the same object.
Field | Type | Description |
---|---|---|
start | Int | Day of week. 1 (Monday), 2, 3, 4, 5, 6, 7 (Sunday) |
end | Int | Day of week. 1 (Monday), 2, 3, 4, 5, 6, 7 (Sunday) |
times | [String] | List of string representation of times. E.g. "11:00 - 12:00", "Closed" or something else |
{
"start": 1,
"end": 1,
"times": [
"...",
"...",
"..."
]
}