XSD element template validation
Hi all,
I have xml in which there are elements that all have an exact set of attributes: name, beanid, type, description. e.g,
<state name="il" beanid="il" type="il" description="country">
<properties>
<population variable="" type="" mandatory="false" direction="in"/>
<flag variable="" type="" mandatory="true" direction="out"/>
</properties>
</state>
i would like 'properties' element to be able to contain any element which has name, beanid, type, description attributes.
How can I create an xsd element validation for an element structure without specifying the element name?

