将参考信息添加到 skos:Concept

Adding reference information to a skos:Concept

如果我有一个 skos:Concept 代表某个科学术语:

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" .

推荐的表示方式是什么:

到目前为止我考虑过:

SKOS 词汇表的元素可以与其他元素结合使用,例如 Dublin Core 的元素。您可以使用都柏林核心术语 referencesrelation

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" .

您可以查看有关都柏林核心元素的详细信息here