FilterCriteria Data Type

Properties
name data type description
attributeName string
attributeValue string
condition Condition
criterion array of FilterCriteria
operator Operator

Example

{
  "attributeName" : "...",
  "attributeValue" : "...",
  "condition" : "OR",
  "criterion" : [ {
    "attributeName" : "...",
    "attributeValue" : "...",
    "condition" : "OR",
    "criterion" : [ { }, { } ],
    "operator" : "NEQ"
  }, {
    "attributeName" : "...",
    "attributeValue" : "...",
    "condition" : "AND",
    "criterion" : [ { }, { } ],
    "operator" : "NEQ"
  } ],
  "operator" : "NEQ"
}