将参考信息添加到SKO:概念

发布于 2025-01-22 16:37:47 字数 601 浏览 3 评论 0原文

如果我有一个Skos:代表一些科学术语的概念:

PREFIX ex: <http://a.example/ex1#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX desiredresource: <http://what.im.looking.for/>

ex:Chelation a skos:Concept ;
  skos:prefLabel "Chelation"@en ;
  skos:definition "a type of bonding of ions and molecules to metal ions."@en;
  desiredresource:reference "https://goldbook.iupac.org/terms/view/C01012" .

建议的方式是什么:

  • 参考信息(例如期刊文章)获得或得出该定义。
  • 为读者提供更多信息的资源。

到目前为止,我已经考虑过:

  • dcat:source:作为“参考”,从中获得了定义

If I have a skos:Concept that represents some scientific term:

PREFIX ex: <http://a.example/ex1#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX desiredresource: <http://what.im.looking.for/>

ex:Chelation a skos:Concept ;
  skos:prefLabel "Chelation"@en ;
  skos:definition "a type of bonding of ions and molecules to metal ions."@en;
  desiredresource:reference "https://goldbook.iupac.org/terms/view/C01012" .

What is the recommended way to represent:

  • reference information (such as journal articles) from which the definition was obtained or derived.
  • Resources that provide more information for the reader.

So far I've considered:

  • dcat:source : as a 'reference' from which the definition was obtained

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

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

发布评论

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

评论(1

困倦 2025-01-29 16:37:47

Skos词汇的元素可以与其他元素(例如都柏林核心的元素结合使用。您可以使用都柏林核心术语参考关系

PREFIX ex: <http://a.example/ex1#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dc: <http://purl.org/dc/terms/>
  ex:Chelation a skos:Concept ;
  skos:prefLabel "Chelation"@en ;
  skos:definition "a type of bonding of ions and molecules to metal ions."@en;
  dc:references "https://goldbook.iupac.org/terms/view/C01012" .

您可以看到有关都柏林核心元素的详细信息在这里

The elements of the SKOS vocabulary can be used in combination with other elements, such as elements of the Dublin Core. And you can use from dublin core terms references or relation

PREFIX ex: <http://a.example/ex1#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dc: <http://purl.org/dc/terms/>
  ex:Chelation a skos:Concept ;
  skos:prefLabel "Chelation"@en ;
  skos:definition "a type of bonding of ions and molecules to metal ions."@en;
  dc:references "https://goldbook.iupac.org/terms/view/C01012" .

you can see details about dublin core elements here

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