sure; here's one that grants a role only on tuesda...
# spicedb
j
sure; here's one that grants a role only on tuesdays:
Copy code
caveat only_on_tuesday(day_of_week string) {
  day_of_week == 'tuesday'
}

definition user {}

definition resource {
  relation viewer: user with only_on_tuesday
  permission view = viewer
}