I am reviewing a simple XML API to be used over http and was wondering if having data redundancy is a good thing or not.
<Items num_items="3" total_cost="10.00">
<Item id="3" cost="3.00" />
<Item id="6" cost="5.00" />
<Item id="7" cost="2.00" />
</Items>
Is num_items and total_cost useful in ensuring data integrity, or is it just pointless fluff?