在 XML 模式中存储元数据

发布于 2024-09-01 10:16:31 字数 310 浏览 2 评论 0原文

我需要在模式中存储额外的元数据。

简化:

<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 技术交流群。

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

发布评论

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

评论(1

烂人 2024-09-08 10:16:31

您可能需要考虑使用 xsd:appinfo 来实现此目的。这可以包含任何 XML 内容:

<xs:schema>
    <xs:complexType name="CustomType">
        <xs:annotation>
            <xs:appinfo>
               <representation>BlaBla</representation>
            </xs:appinfo>
        </xs:annotation>
    </xs:complexType>
</xs:schema>

You might want to consider using xsd:appinfo for that purpose. This can contain any XML content:

<xs:schema>
    <xs:complexType name="CustomType">
        <xs:annotation>
            <xs:appinfo>
               <representation>BlaBla</representation>
            </xs:appinfo>
        </xs:annotation>
    </xs:complexType>
</xs:schema>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文