Name: AttributeFilter

Object that allows to filter for a specific product-attribute. For numeric attribute, the 'attributeRange' has to be defined, whereas for all other attributes the 'attributeValue' has to be set.

XML Example:
<AttributeFilter>
  <attributeRange>DoubleRange</attributeRange>
  <attributeValue>xsd:string</attributeValue>
  <fieldName>xsd:string</fieldName>
</AttributeFilter>
JSON Example:
 {
   "attributeRange": DoubleRange,
   "attributeValue": String,
   "fieldName": String,
 }


Elements
NameTypeRequiredNillableDefault ValueDescription
attributeRangeDoubleRangefalsefalseHas to be specified if the attribute is numeric.
attributeValuexsd:stringfalsefalseHas to be specified if the attribute is not numeric.
fieldNamexsd:stringtruefalseThe solr-fieldname of the attribute which is used for filtering.