Determines whether a list contains a specific value.
contains(list: list, value: any) -> bool
Returns the documented result for the function signature.
respond { condition = !contains(["admin", "editor"], ctx.request.headers.x_role) status = 403 body = { error = "Forbidden: Insufficient privileges" } }