FilterCondition
FilterCondition
Represents a single condition to filter roles based on a specific key, operator, and optional values
JSON Example
{
"key": "string",
"values": [
"string"
],
"operator": "string"
}
string
key
Required
The field to apply the filter on, e.g., 'role_name' or 'roles'
array of
string
values
Optional
List of values to compare against. Used with operators like 'equals'. Null when using 'empty' or 'not_empty'
string
As ^(?i)(equals|not_equals|like|empty|not_empty|in)$
operator
Optional
The comparison operator. Supported values include 'equals', 'not_equals', 'like', 'in', 'empty', and 'not_empty'