Purpose |
This element is a restriction facet that specifies an exclusive lower bound as a constraint of the value space for a data item. The value of the constraint is given by the
|
Parent element | xs:restriction |
Child elements | None |
Attributes | fixed ,
value |
Restrictions |
The following restrictions apply for the
|
Name | Type | Description |
---|---|---|
fixed |
xs:boolean |
If "true", the value of this facet must not be changed in a derived type. Default: "false". |
value |
The type of the
xs:minExclusive element depends on the base of the
restriction.
|
The value
attribute specifies the minimum value of the restricted type. The exact value
of the value attribute is excluded from the
value space.
|
The following example shows a simple type definition based on a
restriction using the xs:minExclusive
element:
<xs:simpleType name="notlessthan20"> <xs:restriction base="integer"> <xs:minExclusive value="19"/> </xs:restriction> </xs:simpleType>
The value space of the simple type "notlessthan20" is restricted to integer values greater than 19. This means 20 is the smallest allowed element in this value space.