gpt4 book ai didi

xml - 扩展 XSD 文件

转载 作者:数据小太阳 更新时间:2023-10-29 02:28:23 37 4
gpt4 key购买 nike

我有一个枚举类型的 XSD 文件。我想创建一个“扩展的”XSD 文件,它添加了一些额外的枚举,但在其他方面就像主 XSD 一样。

例如,主 XSD 文件包含以下内容:

<xsd:simpleType name="color">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="red"></xsd:enumeration>
<xsd:enumeration value="orange"></xsd:enumeration>
<xsd:enumeration value="yellow"></xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
...
<xsd:element name="myColor" type="color" />

我想象中的扩展 XSD 文件只是将“gold”添加到“color”类型。现有的“myColor”元素现在可以包含“gold”,如果它使用这个 XSD 而不是主要的。

这可能吗?

最佳答案

这样的事情怎么样?

<!-- Your base enumeration -->
<xsd:simpleType name="color">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="red"/>
<xsd:enumeration value="orange"/>
<xsd:enumeration value="yellow"/>
</xsd:restriction>
</xsd:simpleType>

<!-- You extended enumeration -->
<xsd:simpleType name="colorEx">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="gold"/>
</xsd:restriction>
</xsd:simpleType>


<xsd:simpleType name="color_union">
<xsd:union memberTypes="colorEx color"/>
</xsd:simpleType>

<xsd:element name="myColor" type="color_union"/>

关于xml - 扩展 XSD 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/976656/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com