The ArrayBinaryType represents an array of Base64-encoded binary elements. For base64Binary data the entire binary stream is encoded using the Base64 Alphabet in RFC 2045.
The required sizeElement attribute shows the size (in bytes) of one element stored in the array. The total size of the binary array can be calculated as: count*sizeElement.
Source
<xs:complexType name="ArrayBinaryType"><xs:annotation><xs:documentation>The ArrayBinaryType represents an array of Base64-encoded binary elements. For base64Binary data the entire binary stream is encoded using the Base64 Alphabet in RFC 2045.</xs:documentation></xs:annotation><xs:simpleContent><xs:extension base="xs:base64Binary"><xs:attribute name="count" type="NaturalType" use="required"><xs:annotation><xs:documentation>The required count attribute is the number of elements in this array.</xs:documentation></xs:annotation></xs:attribute><xs:attribute name="sizeElement" type="xs:unsignedInt" use="required"><xs:annotation><xs:documentation>The required sizeElement attribute shows the size (in bytes) of one element stored in the array. The total size of the binary array can be calculated as: count*sizeElement.</xs:documentation></xs:annotation></xs:attribute></xs:extension></xs:simpleContent></xs:complexType>
<xs:attribute name="count" type="NaturalType" use="required"><xs:annotation><xs:documentation>The required count attribute is the number of elements in this array.</xs:documentation></xs:annotation></xs:attribute>
The required sizeElement attribute shows the size (in bytes) of one element stored in the array. The total size of the binary array can be calculated as: count*sizeElement.
<xs:attribute name="sizeElement" type="xs:unsignedInt" use="required"><xs:annotation><xs:documentation>The required sizeElement attribute shows the size (in bytes) of one element stored in the array. The total size of the binary array can be calculated as: count*sizeElement.</xs:documentation></xs:annotation></xs:attribute>