A DVAL element contains an ID, one or more synonyms, property matching instructions, and may contain boundary values for the DIMENSION.
<!ELEMENT DVAL (DVAL_ID, SYN+, LBOUND?, UBOUND?, PROP*)> <!ATTLIST DVAL TYPE (EXACT | RANGE | LEVEL | SIFT | DVAL) #REQUIRED >
The following sections describe the DVAL element's attributes.
TYPE
The following table provides a brief overview of the DVAL sub-elements.
Sub-element | Brief description |
---|---|
DVAL_ID | Specifies the dimension value ID. |
SYN | Specifies synonyms and processing settings for the particular DIMENSION value. |
LBOUND | Specifies the lower boundary constraints for a range of dimension values. |
UBOUND | Specifies the upper boundary constraints for a range of dimension values. |
PROP | Represents a property. |
<DIMENSION_NODE> <DVAL TYPE="RANGE"> <DVAL_ID ID="30"/> <SYN SEARCH="FALSE" DISPLAY="TRUE" CLASSIFY="FALSE">91 to 100</SYN> <LBOUND> <BOUND TYPE="INTEGER" VALUE="91" CLOSURE="CLOSED"/> </LBOUND> <UBOUND> <BOUND TYPE="INTEGER" VALUE="100" CLOSURE="CLOSED"/> </UBOUND> </DVAL> </DIMENSION_NODE>