RDF 和 uuid。为什么没有瓮架构?

发布于 2024-08-09 10:45:26 字数 231 浏览 10 评论 0原文

<rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>

为什么此 about 不包含 urn:uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031 ? uuid 不是一个 urn,因此需要在它前面有一个 urn: 方案吗?

<rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>

Why this about does not contain urn:uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031 instead? Isn't the uuid a urn, and therefore required to have a urn: scheme in front of it ?

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

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

发布评论

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

评论(2

久而酒知 2024-08-16 10:45:26

遵循一系列规范,IANA URN 命名空间注册表确实注册了“uuid”作为“urn:”之后的命名空间。所以是的,上面的 URL 是错误的,它应该以“urn:uuid”开头,正如您所期望的那样。

Following the chain of specifications, the IANA URN namespace registry does indeed register 'uuid' as a namespace after 'urn:'. So yes, the URL above is wrong and it should start 'urn:uuid' as you were expecting.

月野兔 2024-08-16 10:45:26

这个 URI 是错误的。在 W3C RDF Validator 中使用以下 RDF 文档会返回错误

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/">
  <rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>
    <dc:title>Hello</dc:title> 
  </rdf:Description>
</rdf:RDF>

Error: { W102} 不推荐使用 rdf:about 的不合格使用。[行 = 4,列 = 70]

This URI is wrong. Using the following RDF document in the W3C RDF Validator returns an error

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/">
  <rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>
    <dc:title>Hello</dc:title> 
  </rdf:Description>
</rdf:RDF>

Error: {W102} unqualified use of rdf:about is deprecated.[Line = 4, Column = 70]

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