xs:minInclusive
<xs:minInclusive fixed = "( true |false
)" id = "ID
" value = "anySimpleType
" > <!-- (xs:annotation?) --> </xs:minInclusive>
The xs:minInclusive
facet element applies to all ordered types,
including xs:decimal
, xs:float
, xs:double
, xs:date
, xs:duration
, xs:dateTime
, xs:time
, xs:gDay
, xs:gMonthYear
, xs:gMonth
, xs:gYear
, and their subtypes. The
value
attribute contains the
minimum value in a form appropriate for the type. For example, the
minimum for a type derived from xs:integer
might be 75; the minimum for
a type derived from xs:double
might be 1.61803; and the minimum for a type derived from xs:date
might be 2005-10-26. All
instances of this type must be greater-than or equal
to the minimum value. If the fixed
attribute has the value true
, then types derived from this type
are not allowed to override the value of minInclusive
given here.