Re: [xml-dev] Best way to represent fractional values?

From
Chiusano Joseph <>
To
Hugh Wallis <>
Date
2003-02-10T18:01:45Z
ID
<>
Thread
Re: [xml-dev] Best way to represent fractional values?
Hugh,

W3C Schema does define facets for these:

totalDigits - max # of digits in the value
fractionDigits - max # of digits in fractional part

Ex. from W3C Schema Primer [1]:

<simpleType name='amount'>
  <restriction base='decimal'>
    <totalDigits value='8'/>
    <fractionDigits value='2' fixed='true'/>
  </restriction>
</simpleType>

Hope that helps,
Joe Chiusano
Booz | Allen | Hamilton

[1] http://www.w3.org/TR/xmlschema-0/