我是XSD的新手。 尝试实现逻辑以生成值。 在我们的XSD中,我们有:
<xs:simpleType name="ChargeBandDescriptionType">
<xs:restriction base="xs:string">
<xs:enumeration value="Less than or equal to one million pounds"/>
<xs:enumeration value="Greater than one million pounds"/>
<xs:enumeration value="Less than 5T EEE placed on market"/>
</xs:restriction>
</xs:simpleType>
另一个元素:
<xs:element name="VATRegistered" type="xs:boolean"/>
因此,根据选择,费用数量和带将显示在XML中。 如果选择[ChargeBandDescriptionType] 1,增值税为True-则为100英镑,如果B为无增值税,则为30英镑,依此类推。
有可能吗?我在Google上查了很多,找不到更接近它的东西了。只有我发现我可以编写一些内置函数。或[FieldName] * 123。
提前多多感谢。