is it possible to specify a specific time (like 10:00PM) or does everything need to reference a ‘reference time’ like midnight, sunrise, etc. all the examples i see on the Sample-Rules all use reference times
{
"between": {
"value": {
"time": {
"reference": "Now"
}
},
"start": {
"time": {
"daysOfWeek": [
"Mon",
"Tue",
"Wed",
"Thu",
"Fri"
],
"reference": "**Midnight**",
"offset": {
"value": {
"integer": -360
},
"unit": "Minute"
}
}
},
"end": {
"time": {
"daysOfWeek": [
"Mon",
"Tue",
"Wed",
"Thu",
"Fri"
],
"reference": "**Midnight**",
"offset": {
"value": {
"integer": -180
},
"unit": "Minute"
}
}
}
}
}