XSD:具有相同元素名称的多种类型
我正在使用 xsd 进行 xml 验证。我需要用两种类型来描述一个元素。
<xsd:choice>
<xsd:element name="num" minOccurs="1" type="xsd:integer" fixed="0"/>
<xsd:element name="num" minOccurs="1" type="xsd:positiveInteger"/>
</xsd:choice>
当我使用 num = 0 验证 xml 时,验证成功,但是当我使用 num value = 1 或更大值验证 xml 时,验证失败并出现错误。如何正确描述这个案例?
I am using xsd for xml validation. I need to describe one element with two types.
<xsd:choice>
<xsd:element name="num" minOccurs="1" type="xsd:integer" fixed="0"/>
<xsd:element name="num" minOccurs="1" type="xsd:positiveInteger"/>
</xsd:choice>
When I validate xml with num = 0 validation is successful, but when I validate xml with num value = 1 or greater validation fails with error. How to describe this case correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于此用例,我将使用 xs:nonNegativeInteger:
如果您希望一个元素支持多种类型,您可以使用联合:
I would use xs:nonNegativeInteger for this use case:
If you want an element to support multiple types you can use a union:
同一复杂类型中不能有两个具有相同名称和不同类型的元素粒子(如果您想查找的话,此规则称为“元素声明一致”)。部分原因是 XSD 不仅用于验证,还用于数据类型,例如在 Java 数据绑定中。
但我认为你在这里寻找的是联合类型。
You can't have two element particles in the same complex type with the same name and different types (this rule is called "Element Declarations Consistent" if you want to look it up). Part of the reason is that XSD is used not only for validation, but also for data typing, e.g. in Java data binding.
But I think what you are looking for here is a union type.