complexType "NumberRangeType"
Namespace: |
|
Content: |
|
Defined: |
|
Includes: |
|
Used: |
|
XML Representation Summary |
<... |
|
|
|
> |
|
|
</...> |
Content Model Elements (5):
-
All Direct / Indirect Based Elements (1):
-
Known Usage Locations
Annotation
Structures a numeric range. Low and High values are designated. The structure identifies Low values that should be treated as bottom coded (Stated value and bellow, High values that should be treated as top coded (stated value and higher), and provides a regular expression to further define the valid content of the range.
XML Source (w/o annotations (7); see within schema source)
<xs:complexType name="NumberRangeType"> <xs:sequence> <xs:element maxOccurs="unbounded" minOccurs="0" ref="Label"/> <xs:element minOccurs="0" ref="Low"/> <xs:element minOccurs="0" ref="High"/> <xs:element minOccurs="0" name="TopCode" type="xs:decimal"/> <xs:element minOccurs="0" name="BottomCode" type="xs:decimal"/> </xs:sequence> <xs:attribute name="regExp" type="xs:string" use="optional"/> </xs:complexType> |
Attribute Detail (all declarations; defined within this component only; 1/1)
regExp-
Type: |
xs:string, predefined |
Use: |
optional |
Regular expression defining the allowed syntax of the number.
XML Source (w/o annotations (1); see within schema source)
<xs:attribute name="regExp" type="xs:string" use="optional"/> |
Content Element Detail (all declarations; defined within this component only; 5/5) -
Type: |
xs:decimal, predefined, simple content |
Indicates that any response equal to or less than this value has been coded as the bottom-code value.
XML Source (w/o annotations (1); see within schema source)
<xs:element minOccurs="0" name="BottomCode" type="xs:decimal"/> |
-
The upper bound of the range. If not present, then there is no upper bound.
Simple Content
XML Source (w/o annotations (1); see within schema source)
<xs:element minOccurs="0" ref="High"/> |
-
A display label for the number range. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.
XML Source (w/o annotations (1); see within schema source)
<xs:element maxOccurs="unbounded" minOccurs="0" ref="Label"/> |
-
The lower bound of the range. If not present, then there is no lower bound.
Simple Content
XML Source (w/o annotations (1); see within schema source)
<xs:element minOccurs="0" ref="Low"/> |
-
Type: |
xs:decimal, predefined, simple content |
Indicates that any response equal to or greater than this value has been coded as the top-code value.
XML Source (w/o annotations (1); see within schema source)
<xs:element minOccurs="0" name="TopCode" type="xs:decimal"/> |