EQUAL
This operator is not case sensitive and returns True if the compared expressions are equal. The full list does not have to match when a value used in an expression exists in a list.
Syntax:
(EXPRESSION) = (EXPRESSION)
Examples and results:
Example | Result |
---|---|
Given that @org = "uk" in the access request. | resource.@org = "UK" evaluates to True because the operator is not case sensitive. |
Given that @org = "UK" in the access request. | resource.@org = "UK" evaluates to True. |
Given that @org = "United Kingdom" in the access request. | resource.@org = "UK" evaluates to False. |
resource.groups = user.groups | Evaluates to True if the properties for the groups are the same, irrespective of case. Otherwise False. |
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!