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

Example: ["BUILDING_GROUP"]
matchesstring[]nullable

Regex matching

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

Exclude using exact matching

notMatchesstring[]nullable

Exclude using regex matching

SearchAssetFieldFilter
{
"equals": [
"BUILDING_GROUP"
],
"matches": [
"EQUIPMENT|.*"
],
"notEquals": "Unknown Type: array,null",
"notMatches": "Unknown Type: array,null"
}