The xsd:minInclusive facet specifies the highest possible value for an element : minInclusive « XML Schema « XML Tutorial






File: Schema.xsd
 
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.java2s.com" xmlns="http://www.java2s.com"
  elementFormDefault="qualified">
  <xsd:element name="start_date">

    <xsd:simpleType>

      <xsd:restriction base="xsd:date">

        <xsd:minInclusive value="1999-07-25" />

      </xsd:restriction>

    </xsd:simpleType>

  </xsd:element>

</xsd:schema>


File: Data.xml 

<?xml version="1.0"?>
 
<start_date xmlns="http://www.java2s.com">1999-07-25</start_date>








3.73.minInclusive
3.73.1.Cardinality represents the number of occurrences of a specific element within a content model.
3.73.2.minInclusive Defines the inclusive lower bound for a datatype with the ordered property
3.73.3.The xsd:minInclusive facet specifies the highest possible value for an element