M
MD
I am trying to define the schema for xml document.
One of elements can have null / complex type x/ y
<coordinate>
<x>5</x>
<y>1</y>
</coordinate>
or
<coordinate>
</coordinate>
I tried with union but without the lack since it only works with simpletype
any help is appreciated.
MD
One of elements can have null / complex type x/ y
<coordinate>
<x>5</x>
<y>1</y>
</coordinate>
or
<coordinate>
</coordinate>
I tried with union but without the lack since it only works with simpletype
any help is appreciated.
MD