XSD 用于具有相同名称但不同属性值的重复元素

发布于 2024-12-16 01:37:13 字数 1047 浏览 0 评论 0原文

我正在尝试为以下 XML 片段编写 XSD。

<loop id="1000" name="loop 1000" />
<loop id="1000" name="loop 1000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />

我写了下面的 XSD

<xs:element name="loop" maxOccurs="3">
  <xs:simpleType>
    <xs:attribute use="required" fixed="1000" type="xs:string" name="id" />
  </xs:simpleType>
</xs:element>
<xs:element name="loop" maxOccurs="3">
  <xs:simpleType>
    <xs:attribute use="required" fixed="2000" type="xs:string" name="id" />
  </xs:simpleType>
</xs:element>

但这似乎在 XML 验证中失败了。

XML 不在我的控制范围内。我该如何处理这个问题?

编辑:

我编写了一个 xml 解析器+生成器,并将接收到的 XML 更改为类似

<_1000>...</_1000>
<_1000>...</_1000>
<_2000>...</_2000>
<_2000>...</_2000>
<_2000>...</_2000>

现在我可以为此轻松编写 XSD 的内容。

I am trying to write a XSD for the following XML snippet.

<loop id="1000" name="loop 1000" />
<loop id="1000" name="loop 1000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />

I wrote the following XSD

<xs:element name="loop" maxOccurs="3">
  <xs:simpleType>
    <xs:attribute use="required" fixed="1000" type="xs:string" name="id" />
  </xs:simpleType>
</xs:element>
<xs:element name="loop" maxOccurs="3">
  <xs:simpleType>
    <xs:attribute use="required" fixed="2000" type="xs:string" name="id" />
  </xs:simpleType>
</xs:element>

But this seems to be failing in XML validation.

The XML is not in my control. How do I handle this?

EDIT:

I wrote a xml parser+generator and changed the received XML to something like

<_1000>...</_1000>
<_1000>...</_1000>
<_2000>...</_2000>
<_2000>...</_2000>
<_2000>...</_2000>

Now I can write the XSD easily for this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水晶透心 2024-12-23 01:37:13
<xs:element name="loop" minOccurs="3" maxOccurs="3">
            <xs:simpleType>
                <xs:attribute use="required" fixed="1000" type="xs:string" name="id" />
                <xs:attribute use="required" fixed="loop 1000" type="xs:string" name="name" />
            </xs:simpleType>
        </xs:element>
        <xs:element name="loop" minOccurs="3" maxOccurs="3">
            <xs:simpleType>
                <xs:attribute use="required" fixed="2000" type="xs:string" name="id" />
                <xs:attribute use="required" fixed="loop 2000" type="xs:string" name="name" />
            </xs:simpleType>
        </xs:element>
<xs:element name="loop" minOccurs="3" maxOccurs="3">
            <xs:simpleType>
                <xs:attribute use="required" fixed="1000" type="xs:string" name="id" />
                <xs:attribute use="required" fixed="loop 1000" type="xs:string" name="name" />
            </xs:simpleType>
        </xs:element>
        <xs:element name="loop" minOccurs="3" maxOccurs="3">
            <xs:simpleType>
                <xs:attribute use="required" fixed="2000" type="xs:string" name="id" />
                <xs:attribute use="required" fixed="loop 2000" type="xs:string" name="name" />
            </xs:simpleType>
        </xs:element>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文