Skip to content

String filters

A filter that applies a comparison to a string value.

PropertyTypeRequiredDescription
operatorStringOperatorsYesThe operator to apply to the filter value
valuestringYesThe value to use for the filter operation

A JSON example of this field is:

{
"operator": "eq",
"value": "value"
}

Or with a string operator:

{
"operator": "like",
"value": "value"
}

A filter that applies a comparison to an array of string values.

PropertyTypeRequiredDescription
operatorStringOperatorsYesThe operator to apply to the filter value
valueArray<string>YesThe value to use for the filter operation

A JSON example of this field is:

{
"operator": "eq",
"value": ["value1", "value2"]
}