Having an XML document like this:
<Fathers>
<Father ID="1">
<Name>Homer</Name>
<Sons>
<Son ID="1">
<Name>Bart</Name>
</Son>
</Sons>
</Father>
</Fathers>
Is it valid to have the same attribute name ID
in different nested tags?
Also, is it valid to have duplicate ID
values?