这是我的XSD ......
<element name="amount">
<complexType>
<simpleContent>
<extension base="decimal">
<attribute type="string" name="domain"/>
</extension>
</simpleContent>
</complexType>
</element>
只有在<amount>
有值时才会通过。
然而,如果我将其从十进制更改为字符串,<amount>
不必具有值。如何更新XSD使其成为小数并且是可选的?