Is the order that elements of a common parent appear in XML a meaningful piece of data captured by the XML document, or is order not specified as being meaningful? For example, consider the two XML documents:
<people>
<person name="sam"/>
<person name="juni"/>
</people>
and
<people>
<person name="juni"/>
<person name="sam"/>
</people>
Are these documents considered to represent identical data, or is the difference in order captured?