混合类型 XSD 验证帮助
我的任务是构建一个 XSD 来验证给定的 xml,我的问题是,一些 XML 元素的形式是
<ElementName description="i am an element">1234567</ElementName>
我构建验证元素“值”而不是属性的 XSD 所需的形式,因此我的经验非常有限在构建 XSD 时(我读过 W3C 教程),我尝试了这个
<xs:element name ="ElementName" type="xs:int">
<xs:complexType mixed="true">
<xs:attribute name="description" type="xs:string"/>
</xs:complexType>
</xs:element>
,你瞧……它不起作用,它说:
“Type 属性不能与 simpleType 或 complexType 一起出现”
我确信我做了一些愚蠢的事情,但在其他地方找不到答案/误解的答案!
提前致谢
I've been tasked with building an XSD to validate a given xml, my issue is that some of the XML elements are of the form
<ElementName description="i am an element">1234567</ElementName>
I need to build the XSD that validates the Element 'value' not the attribute so with my increadibly limited experience in building XSDs (I've read the W3C tutorial) i tried this
<xs:element name ="ElementName" type="xs:int">
<xs:complexType mixed="true">
<xs:attribute name="description" type="xs:string"/>
</xs:complexType>
</xs:element>
and lo and behold ... it doesn't work, it says:
"The Type attribute cannot be present with either simpleType or complexType"
i'm sure it's some thing stupid i've done but couldn't find an answer/misinterpreted answers elsewhere !
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
混合类型是不同的。您需要具有简单内容的复杂类型:
另请参阅:
Mixed types are something different. You need a complex type with simple content:
See also: