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 model.

{
"operator": "eq",
"value": "value"
}
Version Changes Schema
0.1.0
  • Added StringComparisonFilter model
StringComparisonFilter.yaml

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 model.

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