Skip to Content
Real World XML
book

Real World XML

by Steven Holzner
January 2003
Beginner to intermediate content levelBeginner to intermediate
1200 pages
23h 42m
English
Peachpit Press
Content preview from Real World XML

Specifying How Often Elements Can Occur

I've indicated that the <note> element can either appear or not appear in elements of the transactionType. This is because I've set the minOccurs attribute like this, which indicates that the minimum number of times this element can occur is zero:

<xsd:complexType name="transactionType"> 
    <xsd:sequence>
        <xsd:element name="Lender" type="address"/>
        <xsd:element name="Borrower" type="address"/>
        <xsd:element ref="note" minOccurs="0"/>
       <xsd:element name="books" type="books"/>
   <xsd:sequence>
   <xsd:attribute name="borrowDate" type="xsd:date"/>
/xsd:complexType>

In general, you can specify the minimum number of times an element appears with the minOccurs attribute and the maximum number of times it can appear with ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Inside XML

Inside XML

Steven Holzner
XML Hacks

XML Hacks

Michael Fitzgerald

Publisher Resources

ISBN: 0735712867Purchase book