Skip to content

String filters

A filter that applies a comparison to a string value.

Property Type Required Description
operator StringOperators Yes The operator to apply to the filter value
value string Yes The value to use for the filter operation

A JSON example of this model.

{
"operator": "eq",
"value": "value"
}
VersionChangesSchema
0.1.0
  • Added StringComparisonFilter model
StringComparisonFilter.yaml

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

Property Type Required Description
operator ArrayOperators Yes The operator to apply to the filter value
value Array<string> Yes The value to use for the filter operation

A JSON example of this model.

{
"operator": "in",
"value": [
"value1",
"value2"
]
}
VersionChangesSchema
0.1.0
  • Added StringArrayFilter model
StringArrayFilter.yaml