Fixed facets ensure that the minimum value of our minInclusive cannot be modified
<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.java2s.com" xmlns="http://www.java2s.com" elementFormDefault="qualified"> <xs:simpleType name="minInclusive"> <xs:restriction base="xs:float"> <xs:minInclusive value="10" fixed="true" /> </xs:restriction> </xs:simpleType> </xs:schema>