Soldato
Hi.
I'm trying to design an XML Schema for something a WebService returns.
Which would be better when creating child elemtents:
Or would
In the example each chapter could also have multiple children.
The chapters section would just be there to hold the chapters, just trying to work out if this makes things easier or harder for people to understand.
There could be about three further levels each with groups below the chapters, so the XML could get a lot deeper by adding the extra group holders.
Thanks for any help / opions.
I'm trying to design an XML Schema for something a WebService returns.
Which would be better when creating child elemtents:
Code:
<book>
<chapters>
<chapter>
<chapter>
</chapters>
</book>
Or would
Code:
<book>
<chapter>
<chapter>
</book>
In the example each chapter could also have multiple children.
The chapters section would just be there to hold the chapters, just trying to work out if this makes things easier or harder for people to understand.
There could be about three further levels each with groups below the chapters, so the XML could get a lot deeper by adding the extra group holders.
Thanks for any help / opions.