如果我有一个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:作为获得定义的“参考”发布于 2022-04-29 16:44:05
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" .您可以看到有关都柏林核心元素这里的详细信息。
https://stackoverflow.com/questions/71946897
复制相似问题