我们有几个 XSD 文件,其中一个具有根元素,其他的被导入或包含。这些 XSD 文件代表一个 XML 服务请求……出于文档原因,我需要提取根元素下的所有元素名称和属性。
我需要的是产生这样的东西:
<table>
<tr>
<td>ELELEMENT OR ATTRIBUTE NAME</td>
<td>Whether or not mandatory - by checking minOccurs="0"</td>
<td>EMPTY OR THE TEXT VALUE under annotation/documentation IF AVAILABLE</td>
</tr>
</table>