[Home] [By Thread] [By Date] [Recent Entries]
> <schema xmlns="http://www.w3.org/2001/XMLSchema">
> <element name="Book">
> <complexType>
> <sequence>
> <element name="Title" maxOccurs="unbounded" type="string" />
> </sequence>
> </complexType>
> </element>
> </schema>
Or like this:
<xs:element name="Book" type="Book"/>
<xs:element name="Title" type="xs:string"/>
<xs:complexType name="Book">
<xs:sequence>
<xs:element ref="Title" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
Then you get a nice separation of elements and types.
--
Andrew Welch
http://andrewjwelch.com
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] |

Cart



