簡體   English   中英

圖數據model將XML轉換為RDF

[英]Graph data model to transform XML to RDF

我正在設計一個語義圖系統。

原始/projects.xml

  <projects>
     <project>
        <projectID>123859</projectID>
        <program> Economic Development Fund</program>
        <recipient>ABC, Inc</recipient>
        <projectName> ABC, Inc Innovation Cluster </projectName>
        <projectDescription>Grant and Credit; Scientific, and Technical Services;G13; ABC, Inc </projectDescription>
        <postalCode>60311</postalCode>
        <region>G13</region>
        <industry>Scientific, and Technical Services</industry>
        <startDate>2021-08-17T00:00:00</startDate>
        <incentiveType>Grant and Credit</incentiveType>
        <totalAwarded>13,315,259</totalAwarded>
        <totalInvestment>175,991,971</totalInvestment>
        <disbursementsToDate>7,000,000</disbursementsToDate>
 </project>
======================================
<project>
++++++++++++++++++++++++++++++++++++++
</project>
 
  </projects>

是否可以將這樣的 XML 轉換為圖形文檔? 如果是,我需要可行的 RDF 和轉換后的三元組示例。 提前致謝!

請查看這些有用的參考資料:

有效的 RDF 三元組可以存儲在任何圖形數據庫中。

MarkLogic 支持 RDF XML 數據 model 的示例:

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
      xmlns:spi="http://my.semantics/projects/incentive/"
      xmlns:sbase="http://my.semantics/projects/"
      xmlns:onto="http://my.semantics/projects/ontology/"
      xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
  <rdf:Description rdf:about="http://my.semantics/projects/incentive/123859"
          sbase:program="Economic Development Fund"
          sbase:projectID="123859"
          sbase:projectName="ABC, Inc Innovation Cluster "
          sbase:recipient="ABC, Inc">
    <sbase:about rdf:resource="http://my.semantics/ontology/economy"/>
    <spi:postalCode>60311</spi:postalCode>
    <spi:region>G13</spi:region>
    <spi:industry>Scientific, and Technical Services</spi:industry>
    <spi:incentiveType>Grant and Credit</spi:incentiveType>
    <spi:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-08-17T00:00:00</spi:startDate>
    <spi:totalAwarded rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">13,315,259</spi:totalAwarded>   
    <spi:totalInvestment rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">175,991,971</spi:totalInvestment>
    <spi:disbursementsToDate rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">7,000,000</spi:disbursementsToDate>
    <rdfs:comment xml:lang="en">Grant and Credit; Scientific, and Technical Services;G13; ABC, Inc </rdfs:comment>
  </rdf:Description>
</rdf:RDF>

一旦正確構造了 RDF 數據 model,三元組轉換就很簡單了。

基於以上 model 轉換和攝取 MarkLogic 三元組:

<?xml version="1.0" encoding="UTF-8"?>
<sem:triples xmlns:sem="http://marklogic.com/semantics">
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/program</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">Economic Development Fund</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/projectID</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">123859</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/projectName</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">ABC, Inc Innovation Cluster</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/recipient</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">ABC, Inc</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/about</sem:predicate>
      <sem:object>http://my.semantics/ontology/economy</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/postalCode</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">60311</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/region</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">G13</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/industry</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">Scientific, and Technical Services</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/incentiveType</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#string">Grant and Credit</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/startDate</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-08-17T00:00:00</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/totalAwarded</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#decimal">13,315,259</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/totalInvestment</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#decimal">175,991,971</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://my.semantics/projects/incentive/disbursementsToDate</sem:predicate>
      <sem:object datatype="http://www.w3.org/2001/XMLSchema#decimal">7,000,000</sem:object>
   </sem:triple>
   <sem:triple>
      <sem:subject>http://my.semantics/projects/incentive/123859</sem:subject>
      <sem:predicate>http://www.w3.org/2000/01/rdf-schema#comment</sem:predicate>
      <sem:object xml:lang="en">Grant and Credit; Scientific, and Technical Services;G13; ABC, Inc</sem:object>
   </sem:triple>
</sem:triples>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM