dtd to xml schema conversion

Hi,For the following line in a dtd:<!ELEMENT tran (field+|table*)+>can anyone please tell me its equivalent in a Xml Schema.Thanks!
[179 byte] By [sultanata] at [2007-10-2 21:32:31]
# 1
Download the pro / enterprise demo of XMLSpy and use the DTD => XSD conversion tool.
SteveNaivea at 2007-7-14 0:46:03 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2

The Stylus Studio tool gave me:

<xs:complexType>

<xs:choice maxOccurs="unbounded">

<xs:element ref="field"/>

<xs:element ref="table"/>

</xs:choice>

<xs:complexType>

Is there any other way in Xml Schema with which I can represent the above schema or this is the only way available.

Message was edited by:

sultanat

sultanata at 2007-7-14 0:46:03 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3
There are other ways available. You don't, for instance, have to use references to the elements field and table.Why does it matter?
Torgila at 2007-7-14 0:46:03 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 4
By other ways ,I meant using any other element besides xs:choice with maxOccurs="unbounded" to represent that field and table can occurs more than 1 time in any order...Message was edited by: sultanat
sultanata at 2007-7-14 0:46:03 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...