Store facet configurations including attribute
based and non-attribute based facets.
Column Descriptions:
Name | Type | Description |
FACET_ID | BIGINT NOT NULL | The unique identifier for this facet. |
ATTR_ID | BIGINT | Foreign key to Attr table. This will not be
populated for facets that are not based on attribute dictionary
attributes. |
SRCHATTR_ID | BIGINT NOT NULL | Foreign key to SrchAttr table. |
SELECTION | SMALLINT NOT NULL DEFAULT 0 | Describes whether the facetable attribute will be
allowed to have multiple selections. Valid values are: 0 = Not
allowed to have multi-selection 1 = Allowed to have
multi-selection |
SORT_ORDER | SMALLINT NOT NULL DEFAULT 0 | The display order to use when displaying the
values for the facet. Valid values are: 0 = Sort by Count 1 = Sort
alphabetically 2 = Sort by the attribute sequence as defined in the
attribute dictionary (applies to attribute dictionary attributes
only) |
KEYWORD_SEARCH | SMALLINT NOT NULL DEFAULT 1 | Describes whether the facet should be included in
the keyword search. Valid values are: 0 = Not included in keyword
search. 1 = Included in keyword search. |
ZERO_DISPLAY | SMALLINT NOT NULL DEFAULT 0 | Describes whether the facetable attribute should
display zero count values. Valid values are: 0 = Do not return zero
count values. 1 = Return zero count values. |
STOREENT_ID | INTEGER NOT NULL | Foreign key to Storeent table. |
MAX_DISPLAY | INTEGER NOT NULL DEFAULT 20 | The maximum values to display in the storefront
for the facet. This value is an integer, and -1 represents an
infinite number of values are allowed to be returned. |
SEQUENCE | DOUBLE NOT NULL DEFAULT 0 | The sequence of the facet showing in the
storefront. |
FIELD1 | INTEGER | Customizable field. |
FIELD2 | VARCHAR (256) | Customizable field. |
FIELD3 | VARCHAR (256) | Customizable field. |
GROUP_ID | BIGINT DEFAULT 0 | The group id for the facet |
OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
Name | Column Names | Type |
P_0012 | FACET_ID | Primary Key |
I0001476 | ATTR_ID | Non-Unique Index |
I0001477 | SRCHATTR_ID | Non-Unique Index |
I0001478 | STOREENT_ID+KEYWORD_SEARCH | Non-Unique Index |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_3732 | ATTR_ID | ATTR | ATTR_ID | Cascade |
F_3733 | SRCHATTR_ID | SRCHATTR | SRCHATTR_ID | Cascade |
Referenced By Child Tables:
Constraint | Columns | Child Table | Child Columns | Type |
F_3736 | FACET_ID | FACETCATGRP | FACET_ID | Cascade |
F_3737 | FACET_ID | FACETDESC | FACET_ID | Cascade |