<xs:complexType name="StringConstantArray">
<xs:annotation>
<xs:documentation>Represents an array of Boolean values where all values are identical. This an optimization for which an array of explicit Boolean values is not required.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="eml:AbstractStringArray">
<xs:sequence>
<xs:element name="Value" type="eml:String2000" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Value inside all the elements of the array.</xs:documentation>
</xs:annotation>
</xs:element>
<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:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
|