Percentage

Double restricted to between 0 and 100

Simple Type Information

Source

<xs:simpleType name="Percentage">
  <xs:annotation>
    <xs:documentation>Double restricted to between 0 and 100</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:double">
    <xs:minInclusive value="0"/>
    <xs:maxInclusive value="100"/>
  </xs:restriction>
</xs:simpleType>