有人可以幫助我如何爲此定義一個xsd。自反方案驗證和定義
我還希望在模式級強制進行驗證,以便根據給定的屬性值僅顯示相應的子標記(基於屬性值自反)。
<?xml version="1.0" encoding="UTF-8"?>
<root>
<sample-tag type="one">
<one></one>
</sample-tag>
<sample-tag type="two">
<two></two>
</sample-tag>
<sample-tag type="three">
<three></three>
</sample-tag>
<sample-tag type="onetwo">
<one></one>
<two></two>
</sample-tag>
</root>