Search Models
Facets
type FacetType =
| 'checkbox'
| 'color'
| 'date-range'
| 'link'
| 'numeric-range'
| 'range-slider'
| 'recent-searches'
| 'related-searches'
| 'search'
| 'size'
| 'tabs'
| 'unsupported';
Â
interface FacetValueColor {
  name: string;
  hex?: string;
  imageUrl?: string;
}
Â
interface FacetValue {
  title: string;
imageUrl?: string;
  value?: string;
  color?: FacetValueColor;
  count?: number;
  level?: number;
  selected?: boolean;
  excluded?: boolean;
  children?: Array<FacetValue>;
}
Â
Â
Pagination
Â
Redirects
Selected Facets
Â
Search Results Items
Â
Sorting
Â
Search Response
For more information on Content Zones, see Content Models.
Search Request
Â