How can I specify an XML schema for an instance document like this:
<productinfo>
<!-- other stuff -->
<informationset type="Manufacturer">
<!-- content not relevant -->
</informationset>
<informationset type="Ingredients">
<!-- content not relevant -->
</informationset>
</productinfo>
that is, a "productinfo" element containing a sequence of two "informationset" children, the first having @type="Manufacurer" and the second having @type="Ingredients"?
Thanks in advance.