Is minOccurs>maxOccurs Allowed?

Hi all,
	Is a particle with minOccurs > maxOccurs valid?
For example, if maxOccurs="0" and minOccurs is not specified,
(and thus defaults to 1), is the shcema valid?	

	<xsd:complexType name="bar">
		<xsd:sequence>
			<xsd:element name="name" maxOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>

Or should a processor automatically decide to reset minOccurs to 0
in this case?

Thanks,
Ajay

Received on Thursday, 13 June 2002 09:20:47 UTC