2.7.32 ST_ArrayValueType

Target namespace: http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2

Referenced by: CT_ArrayValue

This simple type specifies the data type of the rich array value. The possible values are listed in the following table.

Value

Meaning

d

Indicates rich array value is a real number.

i

Indicates rich array value is an integer.

b

Indicates rich array value is a Boolean.

e

Indicates rich array value is an error.

s

Indicates rich array value is text.

r

Indicates rich array value is a rich value.

a

Indicates rich array value is a rich array.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xsd:simpleType name="ST_ArrayValueType">
   <xsd:restriction base="x:ST_Xstring">
     <xsd:enumeration value="d"/>
     <xsd:enumeration value="i"/>
     <xsd:enumeration value="b"/>
     <xsd:enumeration value="e"/>
     <xsd:enumeration value="s"/>
     <xsd:enumeration value="r"/>
     <xsd:enumeration value="a"/>
   </xsd:restriction>
 </xsd:simpleType>

See section 5.20 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).