Skip to main content

SearchAssetFieldFilter

Filter on an asset field.

  • Only one of 'equals' or 'matches' can be provided at the same time.
  • Only one of 'notEquals' or 'notMatches' can be provided at the same time. If both are set in either pair, the request is considered invalid.
equalsstring[]nullable

Exact matching

Default value:
Example: ["BUILDING_GROUP"]
matchesstring[]nullable

Regex matching

Default value:
Example: ["EQUIPMENT\\|.*"]
notEqualsstring[]nullable

Exclude using exact matching

Default value:
notMatchesstring[]nullable

Exclude using regex matching

Default value:
SearchAssetFieldFilter
{
"equals": [
"BUILDING_GROUP"
],
"matches": [
"EQUIPMENT|.*"
],
"notEquals": "",
"notMatches": ""
}