如何将特定对象链接到RDF主题?

时间:2014-06-08 12:16:48

标签: mapping rdf rdfs

我想使用一些本体描述一个发布对象及其所有属性。

我选择使用的本体是:dc,foaf,cito,dct,bibo。

到目前为止,我所做的一切:

@prefix dc:      <http://purl.org/dc/elements/1.1/> .
@prefix db:      <http://lpis.csd.auth.gr/> .
@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
@prefix cito:    <http://purl.org/net/cito/> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct:     <http://purl.org/dc/terms/> .
@prefix bibo:    <http://purl.org/ontology/bibo/> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix map:     <http://lpis.csd.auth.gr#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix vocab:   <http://localhost:2020/vocab/resource/> .
@prefix publ <http://ebiquity.umbc.edu/ontology/publication.owl> .

@prefix atr: <http://localhost:8890/rdfv_pt/schemas/authors#> .
@prefix kwrd: <http://localhost:8890/rdfv_pt/schemas/keywords#> .
@prefix pub: <http://localhost:8890/rdfv_pt/schemas/publications#> .
@prefix ref: <http://localhost:8890/rdfv_pt/schemas/references#> .
@prefix rig: http://localhost:8890/rdfv_pt/schemas/rights#> .
pub:Publication a bibo:Article .

pub:PublicationID a dc:identifier .

pub:PublicationTitle a bibo:title .

pub:MediaType a bibo:presentedAt .

pub:publicationType a bibo:presentedAt .

pub:MediaTitle a bibo:title .

pub:MediaPublisher a bibo:issuer .

pub:MediaEditors a bibo:editorList .

pub:MediaVolInfo a bibo:volume .

pub:PublicationYear a bibo:date .

我无法用上述本体描述的属性如下:

  • PublicationNoOfPages(发布的页数)
  • PublicationPagesInMedium(该出版物在媒体中占用了多少页,例如发表该文章的书)
  • PublicationFileName(文章的文件名,例如pub.pdf)
  • PublicationComments(其他人对该文章的评论)
  • PublicationRelatedURL(文章的相关网址)
  • PublicationRelatedURLText(与上面的字符串类型非常相似)
  • PublicationLocation(文章发布的地点和时间)
  • PublicationPubURL(在特定会议中上传的文章的网址)
  • DisplayOnMLKD(这基本上是否是在特定会议上显示的真/假值)

0 个答案:

没有答案
相关问题