<xs:complexType name="number">
<xs:attribute name="count" type="xs:string" />
<xs:attribute default="1" name="format" type="xs:string" />
<xs:attribute name="from" type="xs:string" />
<xs:attribute name="grouping-separator" type="xs:string" />
<xs:attribute name="grouping-size" type="xs:string" />
<xs:attribute name="lang" type="xs:string" />
<xs:attribute name="letter-value" type="xs:string" />
<xs:attribute default="single" name="level">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="single" />
<xs:enumeration value="multiple" />
<xs:enumeration value="any" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="value" type="xs:string" />
</xs:complexType>
|