Mega Code Archive

 
Categories / XML / XML Schema
 

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.rntsoft.com" xmlns="http://www.rntsoft.com"   elementFormDefault="qualified">   <xs:simpleType name="minInclusive">     <xs:restriction base="xs:float">       <xs:minInclusive value="10" fixed="true" />     </xs:restriction>   </xs:simpleType> </xs:schema>