Idempotent attribute is not first

The idempotent attribute (object with @base="ξ" and @name="xi🌵") must be declared first in the formation.

Incorrect:

<o name="foo">
  <o base="∅" name="x"/>
  <o base="ξ" name="xi🌵"/>
</o>

Correct:

<o name="foo">
  <o base="ξ" name="xi🌵"/>
  <o base="∅" name="x"/>
</o>

Published on Fri Oct 10 22:54:00 UTC 2025.