...
title: the title showed at the top of the facet
field: the solr field associated to the facet
op: operator, either “OR” or “AND”. Tells how documents are shown when selecting multiple entries in the facet. If “OR” documents need to have at least one selected element in the concerned field to be selected. If “AND” they need to have all selected elements as part of the concerned field
minShow: The maximum number of elements that are shown if the facet is not expanded
maxShow: The maximum number of elements that are shown if the facet is expanded (after clicking show more)
variant (optional) : specify the type of FieldFacet to use. It can take these values :
checkbox (default) : use classic FieldFacet with a checkbox list
autocomplete : use a search bar with autocomplete
show (optional, default is true) : True to display the FieldFacet in the left panel. This option is only an UI effect. The facet is still registered as a field facet in the query.
sendToSolr (optional, default is true): True Set to add the facet true to force the query made to the backend. Need to be true to use the facet, also required to Solr even if show is false (keep in mind that if show is true, the facet is queried whatever the value of the sendToSolr parameter). Required to be true for the use of field facet tabs (https://datafari.atlassian.net/wiki/spaces/DATAFARI/pages/2625634305/Customizing+DatafariUI#Search-Tabs )
...