When it comes to documenting the structure of XML files...
One of my cooworkers does it in a Word table:
Another pastes the elements into a Word document with comments like this:
<objectRoot>
<v>
<!-- Current version of the object from the repository. !-->
<!-- (Occurance: 1) -->
</v>
<label>
<!-- Name of the object from the repository. !-->
<!-- (Occurance: 0 or 1 or Many) -->
</label>
</objectRoot>
Which one of these methods is preferred? Is there a better way?
Are there other options that do not require third party Schema Documenter tools to update?