Description
Type
Restriction of xs:decimal
Diagram
Overview
Facets
TotalDigits | 15 |
FractionDigits | 3 |
Source
<xs:simpleType name="VatPercentage" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation xml:lang="de">Steuersatz</xs:documentation>
<xs:documentation xml:lang="en">Tax rate </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:totalDigits value="15" />
<xs:fractionDigits value="3" />
</xs:restriction>
</xs:simpleType>
|
See Also