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[]
Exact matching
Example:
["BUILDING_GROUP"]matchesstring[]
Regex matching
Example:
["EQUIPMENT\\|.*"]notEqualsstring[]
Exclude using exact matching
notMatchesstring[]
Exclude using regex matching
SearchAssetFieldFilter
{
"equals": [
"BUILDING_GROUP"
],
"matches": [
"EQUIPMENT|.*"
],
"notEquals": [
"string"
],
"notMatches": [
"string"
]
}