XML Schema Documentation

Simple Type: RestrictedPercentage

[Table of contents]

Super-types: xsd:decimal < RestrictedPercentage (by restriction)
Sub-types: None
Name RestrictedPercentage
Content
  • Base XSD Type: decimal
  • 0 <= value <= 1
Documentation A type defining a percentage specified as decimal from 0 to 1. A percentage of 5% would be represented as 0.05.
Diagram
Schema Component Representation
<xsd:simpleType name="RestrictedPercentage">
<xsd:restriction base=" xsd:decimal ">
<xsd:minInclusive value="0"/>
<xsd:maxInclusive value="1"/>
</xsd:restriction>
</xsd:simpleType>