- From: Andrew Welch <andrew.j.welch@gmail.com>
- Date: Thu, 17 May 2007 15:08:32 +0100
- To: "Todd Moon" <tmrfcm@gmail.com>
- Cc: xmlschema-dev@w3.org
On 5/17/07, Todd Moon <tmrfcm@gmail.com> wrote: > > Thank you Michael and Shlomo. I didn't know about the ref attribute. > You saved me a lot of time reading documentation. :) Well it's a matter of taste, but if you use the venetian blind style of schema then you wouldn't use element ref="" much, but @type instead, eg: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="part" type="part"/> <xs:complexType name="part"> <xs:sequence> <xs:element name="part" type="part" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="serial" type="xs:string"/> </xs:complexType> </xs:schema> cheers andrew
Received on Thursday, 17 May 2007 14:08:37 UTC