is it possible to make XSD schema for an element with maxOccurs="unbounded" which accepts different value types as its items? for example:
<myArray>
<A>first</A>
<A>second</A>
<A>third</A>
<B>fourth</B>
<B>fifth</B>
</myArray>
if not, is it a non-standard type of designing XML structures?
similarly in XHTML:
<body>
<p></p>
<br />
<img />
</body>
is this mean that xhtml is not standard?
Updated: maxOccurs="unbounded" previously was called "Array Element"