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
Default value:
##defaultExample:
["BUILDING_GROUP"]matchesstring[]
Regex matching
Default value:
##defaultExample:
["EQUIPMENT\\|.*"]notEqualsstring[]
Exclude using exact matching
Default value:
##defaultnotMatchesstring[]
Exclude using regex matching
Default value:
##defaultSearchAssetFieldFilter
{
"equals": [
"BUILDING_GROUP"
],
"matches": [
"EQUIPMENT|.*"
],
"notEquals": [
"string"
],
"notMatches": [
"string"
]
}