Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Content question..

Status
Not open for further replies.

therealdoc

Programmer
Joined
Oct 28, 2002
Messages
1
Location
US
7313.1

I have this xml code



<?xml version=&quot;1.0&quot; ?>

<Schema name=&quot;Xfer5300Schema&quot; xmlns=&quot;urn:schemas-microsoft-com:xml-data&quot; xmlns:dt=&quot;urn:schemas-microsoft-com:datatypes&quot;>

<AttributeType name=&quot;CharterNumber&quot; dt:type=&quot;int&quot; />

<AttributeType name=&quot;Region&quot; dt:type=&quot;int&quot; />

<AttributeType name=&quot;CheckDigit&quot; dt:type=&quot;int&quot; />

<AttributeType name=&quot;CUName&quot; dt:type=&quot;string&quot; />

<AttributeType name=&quot;CycleDate&quot; dt:type=&quot;string&quot; />

<AttributeType name=&quot;Form&quot; dt:type=&quot;string&quot; />

<AttributeType name=&quot;AcctType&quot; dt:type=&quot;string&quot; />

<AttributeType name=&quot;AcctNo&quot; dt:type=&quot;string&quot; />

<AttributeType name=&quot;AcctValue&quot; dt:type=&quot;string&quot; />

<AttributeType name=&quot;Override&quot; dt:type=&quot;boolean&quot; />

<ElementType name=&quot;DummyElt&quot; dt:type=&quot;string&quot; model=&quot;closed&quot; />

<ElementType name=&quot;Account&quot; content=&quot;eltOnly&quot; model=&quot;closed&quot;>

<attribute type=&quot;AcctType&quot; required=&quot;yes&quot; />

<attribute type=&quot;AcctNo&quot; required=&quot;yes&quot; />

<attribute type=&quot;AcctValue&quot; required=&quot;yes&quot; />

<attribute type=&quot;Override&quot; required=&quot;no&quot; />

<element type=&quot;DummyElt&quot; minOccurs=&quot;0&quot; maxOccurs=&quot;1&quot; />

</ElementType>

<ElementType name=&quot;Cycle&quot; content=&quot;eltOnly&quot; model=&quot;closed&quot;>

<attribute type=&quot;CycleDate&quot; required=&quot;yes&quot; />

<attribute type=&quot;Form&quot; required=&quot;no&quot; />

<element type=&quot;Account&quot; minOccurs=&quot;1&quot; maxOccurs=&quot;*&quot; />

</ElementType>

<ElementType name=&quot;CreditUnion&quot; content=&quot;eltOnly&quot; model=&quot;closed&quot;>

<attribute type=&quot;CharterNumber&quot; required=&quot;yes&quot; />

<attribute type=&quot;CheckDigit&quot; required=&quot;yes&quot; />

<attribute type=&quot;Region&quot; required=&quot;no&quot; />

<attribute type=&quot;CUName&quot; required=&quot;yes&quot; />

<element type=&quot;Cycle&quot; minOccurs=&quot;1&quot; maxOccurs=&quot;*&quot; />

</ElementType>

<ElementType name=&quot;Transmission&quot; content=&quot;eltOnly&quot; model=&quot;closed&quot;>

<element type=&quot;CreditUnion&quot; minOccurs=&quot;1&quot; maxOccurs=&quot;*&quot; />

</ElementType>

</Schema>



Tell me what content=&quot;eltOnly&quot; means please...

The Real Doc

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top