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

  • value – to Attribute initial value.
minLength XML representation summary
<minLength
	fixed = Boolean : false
	id = ID
	value = nonNegativeInteger
	{any attributes with non-schema namespace…}› 
Content: (annotation?)
</minLength>
minLength XML code sample
The following is the definition of a user-derived datatype which requires strings to have at least one character (i.e., the empty 
string is not in the value space of this datatype).

<simpleType name='non-empty-string'›
	<restriction base='string'>
		<minLength value='1'/>
	</restriction>
</simpleType›