Defines a positive number, accurate to two decimal places, up to one million.
| Namespace | http://schemas.microsoft.com/office/onenote/2004/import | 
| Schema name | SimpleImport | 
			
<xsd:simpleType name="PositiveDecimal">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">
      Positive number.
    </xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base="xsd:decimal">
      <xsd:minInclusive value="0.00"/>
      <xsd:maxInclusive value="1000000.00"/>
    </xsd:restriction>
</xsd:simpleType>