在 XML 模式中存储元数据
我需要在模式中存储额外的元数据。
简化:
<xs:schema>
<xs:complexType name="CustomType" m:Representation="BlaBla">...</xs:complexTyp>
</xs:schema>
这可能吗?
我在 ms-datasets 中看到过类似的东西,他们使用了一个附加属性“msprop”。 但我必须查看 urn:schemas-microsoft-com:xml-msprop 的来源
i need to store additional metadata in a schema.
simplified:
<xs:schema>
<xs:complexType name="CustomType" m:Representation="BlaBla">...</xs:complexTyp>
</xs:schema>
is it possible?
i have seen somthing like that in ms-datasets they use an additional an attribute "msprop".
but i've to see the source of urn:schemas-microsoft-com:xml-msprop
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要考虑使用
xsd:appinfo
来实现此目的。这可以包含任何 XML 内容:You might want to consider using
xsd:appinfo
for that purpose. This can contain any XML content: