<xs:complexType name="IntegerRangeArray">
<xs:annotation>
<xs:documentation>Defines an array as a range of integers. The range is defined by an initial value and a count defining the size of the range.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="eml:AbstractIntegerArray">
<xs:sequence>
<xs:element name="Count" type="eml:PositiveLong" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Size of the array.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="xs:long" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Start value for the range. End value is start+count-1.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
|