yeah, we support a timestamp built-in type. You can store in your relationship the upper boundary and lower boundary, and then write the caveat expression like:
Copy code
caveat working_hours(now timestamp, start timestamp, end timestamp) {
now >= start && now <= end
}