2

Schema.org RDFa を使用した次の HTML があります。

<li class="product" typeof="s:Product">
  <a href="item.php?id=227">
     <img property="s:img" src="http://www.test.com/pictures/227.jpg"></a>
  <h2 property="s:name">Example name</h2>
  <div property="s:brand">Examplebrand</div>
  <div property="s:model">Examplemodel</div>
  <div rel="s:offers">
    <div class="description" typeof="s:Offer">
      <div property="s:price">79,00</div>
      <div property="s:priceCurrency" content="EUR"></div>
    </div>
  </div>
  <div property="s:productID" content="NQ==">
    <div rel="s:seller">
      <div class="description" typeof="s:Organization">
        <div property="s:name">Shop1</div>
      </div>
    </div>
  </div>
</li>

ページを読み込んだ後、SPARQL を使用して、(たとえば) €70,00 を超えるすべての製品を選択したいと考えています。

しかし、これは NULL しか返しません:

PREFIX s: <http://schema.org/>
SELECT   ?a ?price
WHERE {
  ?a s:price ?price.
  FILTER (?price > 70).
}

価格を価格/フロートとして解釈していないと思います。私は何を間違っていますか?

4

1 に答える 1

1

RDFa から対応する RDF データを取得するには、XHTML だけでは不十分です。あなたの XHTML を次のように記入しました。SPARQL クエリに基づいてsプレフィックスを作成したことに注意してください。http://schema.org/ただし、これらの接頭辞がデータ内で一致しない場合は、簡単に故障する可能性があります。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" 
      version="XHTML+RDFa 1.1"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:s="http://schema.org/"
      xsi:schemaLocation="http://www.w3.org/1999/xhtml
                          http://www.w3.org/MarkUp/SCHEMA/xhtml-rdfa-2.xsd"
      lang="en"
      xml:lang="en">
  <head><title>Some title</title></head>
  <body>
    <li class="product" typeof="s:Product">
      <a href="item.php?id=227">
        <img property="s:img" src="http://www.test.com/pictures/227.jpg"/></a>
      <h2 property="s:name">Example name</h2>
      <div property="s:brand">Examplebrand</div>
      <div property="s:model">Examplemodel</div>
      <div rel="s:offers">
        <div class="description" typeof="s:Offer">
          <div property="s:price">79,00</div>
          <div property="s:priceCurrency" content="EUR"></div>
        </div>
      </div>
      <div property="s:productID" content="NQ==">
        <div rel="s:seller">
          <div class="description" typeof="s:Organization">
            <div property="s:name">Shop1</div>
          </div>
        </div>
      </div>
    </li>
  </body>
</html>

これをW3C の RDFa distillerに入れると、次の RDF を取得できます。

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:s="http://schema.org/"
  xmlns:xhv="http://www.w3.org/1999/xhtml/vocab#"
  xmlns:xml="http://www.w3.org/XML/1998/namespace"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
  <rdf:Description rdf:about="http://www.test.com/pictures/227.jpg">
    <s:img xml:lang="en"></s:img>
  </rdf:Description>
  <s:Product>
    <s:seller>
      <s:Organization>
        <s:name xml:lang="en">Shop1</s:name>
      </s:Organization>
    </s:seller>
    <s:productID xml:lang="en">NQ==</s:productID>
    <s:model xml:lang="en">Examplemodel</s:model>
    <s:offers>
      <s:Offer>
        <s:priceCurrency xml:lang="en">EUR</s:priceCurrency>
        <s:price xml:lang="en">79,00</s:price>
      </s:Offer>
    </s:offers>
    <s:name xml:lang="en">Example name</s:name>
    <s:brand xml:lang="en">Examplebrand</s:brand>
  </s:Product>
</rdf:RDF>

RDF を見ると、価格が文字列として解釈されている理由が簡単にわかります。

<s:price xml:lang="en">79,00</s:price>

プロパティ値は文字列で、言語タグが付いた文字列です! datatypeただし、名前空間と属性を追加することで、データ型を簡単に指定できます。

<html xmlns="http://www.w3.org/1999/xhtml" 
      version="XHTML+RDFa 1.1"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      ...>
  ...
  <div property="s:price" datatype="xsd:float">79,00</div>
  ...
</html>

ただし、コンマ表記は実際には型に対して有効ではないため、実際には次のように属性もxsd:float指定する必要があります。content

<div property="s:price" datatype="xsd:float" content="79.00">79,00</div>

これらの変更の後、次の RDF を取得します。

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:s="http://schema.org/"
  xmlns:xhv="http://www.w3.org/1999/xhtml/vocab#"
  xmlns:xml="http://www.w3.org/XML/1998/namespace"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
  <s:Product>
    <s:productID xml:lang="en">NQ==</s:productID>
    <s:model xml:lang="en">Examplemodel</s:model>
    <s:brand xml:lang="en">Examplebrand</s:brand>
    <s:offers>
      <s:Offer>
        <s:priceCurrency xml:lang="en">EUR</s:priceCurrency>
        <s:price rdf:datatype="http://www.w3.org/2001/XMLSchema#float">79.00</s:price>
      </s:Offer>
    </s:offers>
    <s:name xml:lang="en">Example name</s:name>
    <s:seller>
      <s:Organization>
        <s:name xml:lang="en">Shop1</s:name>
      </s:Organization>
    </s:seller>
  </s:Product>
  <rdf:Description rdf:about="http://www.test.com/pictures/227.jpg">
    <s:img xml:lang="en"></s:img>
  </rdf:Description>
</rdf:RDF>

これらの変更の後、クエリは変更なしで問題なく機能します。

$ arq --data data3.rdf --query query.sparql 
------------------------------------------------------------
| a    | price                                             |
============================================================
| _:b0 | "79.00"^^<http://www.w3.org/2001/XMLSchema#float> |
------------------------------------------------------------
于 2013-08-07T01:25:46.273 に答える