Maps to a UML Attribute with the stereotype XSDminInclusive. The name and type of such an attribute do not make sense.

<minInclusive
	fixed = boolean : false
	id = ID
	value = anySimpleType
	{any attributes with non-schema namespace…}>
	Content: (annotation?)
</minInclusive>
{value} must be in the value space of {base type definition}.


The following is the definition of a user-derived datatype which limits values to integers greater than or equal to 100, using minInclusive.
<simpleType name='one-hundred-or-more'>
	<restriction base='integer'>
		<minInclusive value='100'/>
	</restriction>
</simpleType>