source |
<xsd:simpleType name="signedPercentType">
<xsd:annotation>
<xsd:documentation>Represents a signed percentage between -100 and 100.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:double">
<xsd:minInclusive value="-100"/>
<xsd:maxInclusive value="100"/>
</xsd:restriction>
</xsd:simpleType> |