xs:maxInclusive
<xs:maxInclusive fixed = "( true |false
)" id = "ID
" value = "anySimpleType
" > <!-- (xs:annotation?) --> </xs:maxInclusive>
The xs:maxInclusive
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
maximum value in a form appropriate for the type. For example, the
maximum for a type derived from xs:integer
might be 75; the maximum for
a type derived from xs:double
might be 1.61803; and the maximum for a type derived from xs:date
might be 2004-10-26. All
instances of this type must be less-than or equal
to the maximum value. If the fixed
attribute has the value true
, then types derived from this type
are not allowed to override the value of maxInclusive
given here.