--- a/microdata-rdf/tests/0002.ttl Sat Sep 01 22:10:00 2012 -0600
+++ b/microdata-rdf/tests/0002.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -1,7 +1,5 @@
-@base <http://www.w3.org/TR/microdata-rdf/tests/> .
@prefix md: <http://www.w3.org/ns/md#> .
-@prefix schema: <http://schema.org/> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-<0002.html> md:item ([ a schema:Person;
- schema:fullName "Gregg Kellogg";
- schema:name "Gregg Kellogg"]) .
+<http://www.w3.org/TR/microdata-rdf/tests/0002.html> md:item (
+ [ <http://www.w3.org/TR/microdata-rdf/tests/0002.html#name> "Gregg", "Kellogg"]) .
--- a/microdata-rdf/tests/0003.ttl Sat Sep 01 22:10:00 2012 -0600
+++ b/microdata-rdf/tests/0003.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -1,5 +1,6 @@
-@base <http://www.w3.org/TR/microdata-rdf/tests/> .
@prefix md: <http://www.w3.org/ns/md#> .
-@prefix schema: <http://schema.org/> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-<0003.html> md:item ([ a schema:Person; schema:name "Gregg Kellogg"]) .
\ No newline at end of file
+<http://www.w3.org/TR/microdata-rdf/tests/0003.html> md:item (
+ [ <http://www.w3.org/TR/microdata-rdf/tests/0003.html#fullName> "Gregg Kellogg";
+ <http://www.w3.org/TR/microdata-rdf/tests/0003.html#name> "Gregg Kellogg"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/add-test.rb Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,83 @@
+#!/usr/bin/env ruby
+# Add a test to the test manifest
+require 'getoptlong'
+require 'strscan'
+
+opts = GetoptLong.new(
+ [ '--help', '-h', GetoptLong::NO_ARGUMENT ],
+ [ '--num', GetoptLong::REQUIRED_ARGUMENT ],
+ [ '--comment', GetoptLong::REQUIRED_ARGUMENT ],
+ [ '--data', GetoptLong::REQUIRED_ARGUMENT ],
+ [ '--query', GetoptLong::REQUIRED_ARGUMENT ],
+ [ '--negative', GetoptLong::NO_ARGUMENT ],
+)
+
+num = comment = data = query = negative = nil
+
+section_start = %r(.* id="positive-tests")m
+
+opts.each do |opt, arg|
+ case opt
+ when '--help'
+ puts %(usage: add-test opts
+ --help - this message
+ --num - test number, defaults to last number
+ --negative - negative test, positive otherwise
+ --comment - REQUIRED: test comment
+ --data - input file, defaults to num.html
+ --query - result file, defaults to num.ttl
+ )
+ when '--num' then num = arg.to_i
+ when '--negative' then section_start = %r(.* id="negative-tests")m
+ when '--comment' then comment = arg
+ when "--data" then data = arg
+ when "--query" then query = arg
+ end
+end
+
+raise "Required argument --comment missing" if comment.nil?
+
+input = StringScanner.new(File.read("./index.html"))
+
+# scan to section start
+output = input.scan(section_start)
+output += input.scan_until(%r(</h2>\n)m)
+
+# scan until last test, counting existing tests
+num_tests = 0
+while this_test = input.scan_until(%r(<!-- End Test Description -->\n)m)
+ num_tests += 1
+ output += this_test
+end
+
+num ||= num_tests + 1
+num_str = "%.4d" % num
+data ||= "#{num_str}.html"
+query ||= "#{num_str}.ttl"
+
+# Add test
+output += %(
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test #{num}</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >#{comment}</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="#{data}">input</a> |
+ <a itemprop="query" href="#{query}">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+)
+
+output += input.rest
+
+puts output
\ No newline at end of file
--- a/microdata-rdf/tests/index.html Sat Sep 01 22:10:00 2012 -0600
+++ b/microdata-rdf/tests/index.html Sun Sep 02 22:33:15 2012 -0600
@@ -138,305 +138,905 @@
itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest">
<h2 itemprop="http://www.w3.org/2000/01/rdf-schema#comment">Positive processor tests</h2>
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0001</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Item with no itemtype and literal itemprop</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0001.html">input</a> |
- <a itemprop="query" href="0001.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0002</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Item with no itemtype and 2 elements with equivalent itemprop</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0002.html">input</a> |
- <a itemprop="query" href="0002.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0003</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Item with itemprop having two properties</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0003.html">input</a> |
- <a itemprop="query" href="0003.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0004</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of meta and @content</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0004.html">input</a> |
- <a itemprop="query" href="0004.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0005</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of audio and @src</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0005.html">input</a> |
- <a itemprop="query" href="0005.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0006</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of embed and @src</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0006.html">input</a> |
- <a itemprop="query" href="0006.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0007</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of iframe and @src</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0007.html">input</a> |
- <a itemprop="query" href="0007.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0001</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Item with no itemtype and literal itemprop</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0001.html">input</a> |
+ <a itemprop="query" href="0001.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0008</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of img and @src</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0008.html">input</a> |
- <a itemprop="query" href="0008.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0009</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of source and @src</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0009.html">input</a> |
- <a itemprop="query" href="0009.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0010</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of track and @src</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0010.html">input</a> |
- <a itemprop="query" href="0010.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0002</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Item with no itemtype and 2 elements with equivalent itemprop</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0002.html">input</a> |
+ <a itemprop="query" href="0002.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0011</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of video and @src</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0011.html">input</a> |
- <a itemprop="query" href="0011.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
-
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0012</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of a and @href</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0012.html">input</a> |
- <a itemprop="query" href="0012.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0003</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Item with itemprop having two properties</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0003.html">input</a> |
+ <a itemprop="query" href="0003.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0013</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of area and @href</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0013.html">input</a> |
- <a itemprop="query" href="0013.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0004</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of meta and @content</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0004.html">input</a> |
+ <a itemprop="query" href="0004.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0014</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of link and @href</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0014.html">input</a> |
- <a itemprop="query" href="0014.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0005</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of audio and @src</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0005.html">input</a> |
+ <a itemprop="query" href="0005.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
- <!-- Start Test Description -->
- <div itemprop="entries"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
- class="test-entry">
- <span itemprop="name">Test 0015</span>:
- <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
- >Use of object and @data</span>
- (
- <span itemprop="action"
- itemscope="true"
- itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
- <a itemprop="data" href="0015.html">input</a> |
- <a itemprop="query" href="0015.ttl">query</a>
- </span>
- <meta itemprop="result" content="true"/>
- )
- </div>
- <!-- End Test Description -->
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0006</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of embed and @src</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0006.html">input</a> |
+ <a itemprop="query" href="0006.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0007</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of iframe and @src</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0007.html">input</a> |
+ <a itemprop="query" href="0007.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0008</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of img and @src</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0008.html">input</a> |
+ <a itemprop="query" href="0008.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0009</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of source and @src</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0009.html">input</a> |
+ <a itemprop="query" href="0009.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0010</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of track and @src</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0010.html">input</a> |
+ <a itemprop="query" href="0010.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0011</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of video and @src</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0011.html">input</a> |
+ <a itemprop="query" href="0011.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0012</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of a and @href</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0012.html">input</a> |
+ <a itemprop="query" href="0012.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0013</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of area and @href</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0013.html">input</a> |
+ <a itemprop="query" href="0013.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0014</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of link and @href</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0014.html">input</a> |
+ <a itemprop="query" href="0014.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0015</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Use of object and @data</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="0015.html">input</a> |
+ <a itemprop="query" href="0015.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0016</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 1 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_1.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_1.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0017</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 2 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_2.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_2.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0018</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 3 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_3.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_3.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0019</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 4 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_4.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_4.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0020</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 5 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_5.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_5.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0021</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 6 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_6.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_6.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0022</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 7 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_7.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_7.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0023</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 8 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_8.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_8.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0024</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 9 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_9.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_9.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0025</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 10 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_10.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_10.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0026</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 11 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_11.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_11.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0027</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 12 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_12.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_12.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0028</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 13 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_13.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_13.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0029</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 14 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_14.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_14.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0030</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 15 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_15.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_15.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0031</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 16 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_16.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_16.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0032</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 17 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_17.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_17.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0033</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 18 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_18.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_18.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0034</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 19 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_19.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_19.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0035</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 20 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_20.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_20.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0036</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 21 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_21.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_21.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0037</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 22 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_22.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_22.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0038</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 23 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_23.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_23.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0039</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 24 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_24.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_24.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0040</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 25 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_25.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_25.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0041</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 26 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_26.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_26.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0042</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 27 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_27.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_27.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0043</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 28 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_28.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_28.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0044</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 29 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_29.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_29.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
+
+<!-- Start Test Description -->
+<div itemprop="entries"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry"
+ class="test-entry">
+ <span itemprop="name">Test 0045</span>:
+ <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
+ >Web Schemas TF: Schema.org tests: test 30 (format md)</span>
+ (
+ <span itemprop="action"
+ itemscope="true"
+ itemtype="http://www.w3.org/2001/sw/DataAccess/tests/test-query#QueryTest">
+ <a itemprop="data" href="sdo_eg_md_30.html">input</a> |
+ <a itemprop="query" href="sdo_eg_md_30.ttl">query</a>
+ </span>
+ <meta itemprop="result" content="true"/>
+ )
+</div>
+<!-- End Test Description -->
</section>
--- a/microdata-rdf/tests/manifest-frame.jsonld Sat Sep 01 22:10:00 2012 -0600
+++ b/microdata-rdf/tests/manifest-frame.jsonld Sun Sep 02 22:33:15 2012 -0600
@@ -11,7 +11,7 @@
"action": "mf:action",
"data": {"@id": "mq:data", "@type": "@id"},
"query": {"@id": "mq:query", "@type": "@id"},
- "result": {"@id": "mf:result", "@type": "xsd:boolean"}
+ "result": "mf:result"
},
"@type": "mf:Manifest",
"entries": {
--- a/microdata-rdf/tests/manifest.jsonld Sat Sep 01 22:10:00 2012 -0600
+++ b/microdata-rdf/tests/manifest.jsonld Sun Sep 02 22:33:15 2012 -0600
@@ -19,211 +19,598 @@
"@id": "mq:query",
"@type": "@id"
},
- "result": {
- "@id": "mf:result",
- "@type": "xsd:boolean"
- }
+ "result": "mf:result"
},
"@graph": [
{
- "@id": "_:t23",
+ "@id": "_:t67",
"@type": "mf:Manifest",
"comment": "Positive processor tests",
"entries": [
{
- "@id": "_:t13",
+ "@id": "_:t68",
"@type": "mf:ManifestEntry",
"comment": "Item with no itemtype and literal itemprop",
"action": {
- "@id": "_:t7",
+ "@id": "_:t82",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0001.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0001.ttl"
},
"name": "Test 0001",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t24",
+ "@id": "_:t17",
"@type": "mf:ManifestEntry",
"comment": "Item with no itemtype and 2 elements with equivalent itemprop",
"action": {
- "@id": "_:t3",
+ "@id": "_:t18",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0002.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0002.ttl"
},
"name": "Test 0002",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t25",
+ "@id": "_:t69",
"@type": "mf:ManifestEntry",
"comment": "Item with itemprop having two properties",
"action": {
- "@id": "_:t21",
+ "@id": "_:t3",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0003.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0003.ttl"
},
"name": "Test 0003",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t17",
+ "@id": "_:t14",
"@type": "mf:ManifestEntry",
"comment": "Use of meta and @content",
"action": {
- "@id": "_:t12",
+ "@id": "_:t13",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0004.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0004.ttl"
},
"name": "Test 0004",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t10",
+ "@id": "_:t6",
"@type": "mf:ManifestEntry",
"comment": "Use of audio and @src",
"action": {
- "@id": "_:t6",
+ "@id": "_:t7",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0005.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0005.ttl"
},
"name": "Test 0005",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t26",
+ "@id": "_:t19",
"@type": "mf:ManifestEntry",
"comment": "Use of embed and @src",
"action": {
- "@id": "_:t2",
+ "@id": "_:t20",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0006.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0006.ttl"
},
"name": "Test 0006",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t27",
+ "@id": "_:t41",
"@type": "mf:ManifestEntry",
"comment": "Use of iframe and @src",
"action": {
- "@id": "_:t20",
+ "@id": "_:t21",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0007.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0007.ttl"
},
"name": "Test 0007",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t16",
+ "@id": "_:t25",
"@type": "mf:ManifestEntry",
"comment": "Use of img and @src",
"action": {
- "@id": "_:t11",
+ "@id": "_:t26",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0008.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0008.ttl"
},
"name": "Test 0008",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t9",
+ "@id": "_:t34",
"@type": "mf:ManifestEntry",
"comment": "Use of source and @src",
"action": {
- "@id": "_:t5",
+ "@id": "_:t35",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0009.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0009.ttl"
},
"name": "Test 0009",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t28",
+ "@id": "_:t44",
"@type": "mf:ManifestEntry",
"comment": "Use of track and @src",
"action": {
- "@id": "_:t1",
+ "@id": "_:t45",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0010.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0010.ttl"
},
"name": "Test 0010",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t29",
+ "@id": "_:t50",
"@type": "mf:ManifestEntry",
"comment": "Use of video and @src",
"action": {
- "@id": "_:t19",
+ "@id": "_:t51",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0011.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0011.ttl"
},
"name": "Test 0011",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t15",
+ "@id": "_:t57",
"@type": "mf:ManifestEntry",
"comment": "Use of a and @href",
"action": {
- "@id": "_:t14",
+ "@id": "_:t58",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0012.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0012.ttl"
},
"name": "Test 0012",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t8",
+ "@id": "_:t70",
"@type": "mf:ManifestEntry",
"comment": "Use of area and @href",
"action": {
- "@id": "_:t4",
+ "@id": "_:t88",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0013.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0013.ttl"
},
"name": "Test 0013",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t30",
+ "@id": "_:t71",
"@type": "mf:ManifestEntry",
"comment": "Use of link and @href",
"action": {
- "@id": "_:t0",
+ "@id": "_:t90",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0014.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0014.ttl"
},
"name": "Test 0014",
- "mf:result": "true"
+ "result": "true"
},
{
- "@id": "_:t22",
+ "@id": "_:t72",
"@type": "mf:ManifestEntry",
"comment": "Use of object and @data",
"action": {
- "@id": "_:t18",
+ "@id": "_:t87",
"@type": "mq:QueryTest",
"data": "http://www.w3.org/TR/microdata-rdf/tests/0015.html",
"query": "http://www.w3.org/TR/microdata-rdf/tests/0015.ttl"
},
"name": "Test 0015",
- "mf:result": "true"
+ "result": "true"
+ },
+ {
+ "@id": "_:t60",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 1 (format md)",
+ "action": {
+ "@id": "_:t56",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_1.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_1.ttl"
+ },
+ "name": "Test 0016",
+ "result": "true"
+ },
+ {
+ "@id": "_:t54",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 2 (format md)",
+ "action": {
+ "@id": "_:t52",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_2.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_2.ttl"
+ },
+ "name": "Test 0017",
+ "result": "true"
+ },
+ {
+ "@id": "_:t48",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 3 (format md)",
+ "action": {
+ "@id": "_:t46",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_3.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_3.ttl"
+ },
+ "name": "Test 0018",
+ "result": "true"
+ },
+ {
+ "@id": "_:t38",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 4 (format md)",
+ "action": {
+ "@id": "_:t36",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_4.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_4.ttl"
+ },
+ "name": "Test 0019",
+ "result": "true"
+ },
+ {
+ "@id": "_:t29",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 5 (format md)",
+ "action": {
+ "@id": "_:t27",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_5.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_5.ttl"
+ },
+ "name": "Test 0020",
+ "result": "true"
+ },
+ {
+ "@id": "_:t22",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 6 (format md)",
+ "action": {
+ "@id": "_:t23",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_6.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_6.ttl"
+ },
+ "name": "Test 0021",
+ "result": "true"
+ },
+ {
+ "@id": "_:t39",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 7 (format md)",
+ "action": {
+ "@id": "_:t31",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_7.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_7.ttl"
+ },
+ "name": "Test 0022",
+ "result": "true"
+ },
+ {
+ "@id": "_:t32",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 8 (format md)",
+ "action": {
+ "@id": "_:t9",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_8.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_8.ttl"
+ },
+ "name": "Test 0023",
+ "result": "true"
+ },
+ {
+ "@id": "_:t73",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 9 (format md)",
+ "action": {
+ "@id": "_:t12",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_9.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_9.ttl"
+ },
+ "name": "Test 0024",
+ "result": "true"
+ },
+ {
+ "@id": "_:t15",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 10 (format md)",
+ "action": {
+ "@id": "_:t16",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_10.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_10.ttl"
+ },
+ "name": "Test 0025",
+ "result": "true"
+ },
+ {
+ "@id": "_:t74",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 11 (format md)",
+ "action": {
+ "@id": "_:t84",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_11.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_11.ttl"
+ },
+ "name": "Test 0026",
+ "result": "true"
+ },
+ {
+ "@id": "_:t75",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 12 (format md)",
+ "action": {
+ "@id": "_:t83",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_12.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_12.ttl"
+ },
+ "name": "Test 0027",
+ "result": "true"
+ },
+ {
+ "@id": "_:t66",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 13 (format md)",
+ "action": {
+ "@id": "_:t65",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_13.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_13.ttl"
+ },
+ "name": "Test 0028",
+ "result": "true"
+ },
+ {
+ "@id": "_:t63",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 14 (format md)",
+ "action": {
+ "@id": "_:t61",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_14.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_14.ttl"
+ },
+ "name": "Test 0029",
+ "result": "true"
+ },
+ {
+ "@id": "_:t1",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 15 (format md)",
+ "action": {
+ "@id": "_:t0",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_15.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_15.ttl"
+ },
+ "name": "Test 0030",
+ "result": "true"
+ },
+ {
+ "@id": "_:t76",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 16 (format md)",
+ "action": {
+ "@id": "_:t89",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_16.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_16.ttl"
+ },
+ "name": "Test 0031",
+ "result": "true"
+ },
+ {
+ "@id": "_:t77",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 17 (format md)",
+ "action": {
+ "@id": "_:t86",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_17.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_17.ttl"
+ },
+ "name": "Test 0032",
+ "result": "true"
+ },
+ {
+ "@id": "_:t59",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 18 (format md)",
+ "action": {
+ "@id": "_:t55",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_18.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_18.ttl"
+ },
+ "name": "Test 0033",
+ "result": "true"
+ },
+ {
+ "@id": "_:t53",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 19 (format md)",
+ "action": {
+ "@id": "_:t49",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_19.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_19.ttl"
+ },
+ "name": "Test 0034",
+ "result": "true"
+ },
+ {
+ "@id": "_:t47",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 20 (format md)",
+ "action": {
+ "@id": "_:t43",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_20.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_20.ttl"
+ },
+ "name": "Test 0035",
+ "result": "true"
+ },
+ {
+ "@id": "_:t37",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 21 (format md)",
+ "action": {
+ "@id": "_:t33",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_21.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_21.ttl"
+ },
+ "name": "Test 0036",
+ "result": "true"
+ },
+ {
+ "@id": "_:t28",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 22 (format md)",
+ "action": {
+ "@id": "_:t24",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_22.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_22.ttl"
+ },
+ "name": "Test 0037",
+ "result": "true"
+ },
+ {
+ "@id": "_:t42",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 23 (format md)",
+ "action": {
+ "@id": "_:t40",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_23.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_23.ttl"
+ },
+ "name": "Test 0038",
+ "result": "true"
+ },
+ {
+ "@id": "_:t30",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 24 (format md)",
+ "action": {
+ "@id": "_:t4",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_24.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_24.ttl"
+ },
+ "name": "Test 0039",
+ "result": "true"
+ },
+ {
+ "@id": "_:t8",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 25 (format md)",
+ "action": {
+ "@id": "_:t5",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_25.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_25.ttl"
+ },
+ "name": "Test 0040",
+ "result": "true"
+ },
+ {
+ "@id": "_:t10",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 26 (format md)",
+ "action": {
+ "@id": "_:t11",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_26.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_26.ttl"
+ },
+ "name": "Test 0041",
+ "result": "true"
+ },
+ {
+ "@id": "_:t78",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 27 (format md)",
+ "action": {
+ "@id": "_:t85",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_27.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_27.ttl"
+ },
+ "name": "Test 0042",
+ "result": "true"
+ },
+ {
+ "@id": "_:t79",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 28 (format md)",
+ "action": {
+ "@id": "_:t2",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_28.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_28.ttl"
+ },
+ "name": "Test 0043",
+ "result": "true"
+ },
+ {
+ "@id": "_:t80",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 29 (format md)",
+ "action": {
+ "@id": "_:t81",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_29.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_29.ttl"
+ },
+ "name": "Test 0044",
+ "result": "true"
+ },
+ {
+ "@id": "_:t64",
+ "@type": "mf:ManifestEntry",
+ "comment": "Web Schemas TF: Schema.org tests: test 30 (format md)",
+ "action": {
+ "@id": "_:t62",
+ "@type": "mq:QueryTest",
+ "data": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_30.html",
+ "query": "http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_30.ttl"
+ },
+ "name": "Test 0045",
+ "result": "true"
}]
}]
}
\ No newline at end of file
--- a/microdata-rdf/tests/manifest.ttl Sat Sep 01 22:10:00 2012 -0600
+++ b/microdata-rdf/tests/manifest.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -95,4 +95,184 @@
mq:data <0015.html>;
mq:query <0015.ttl>];
mf:name "Test 0015";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 1 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_1.html>;
+ mq:query <sdo_eg_md_1.ttl>];
+ mf:name "Test 16";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 2 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_2.html>;
+ mq:query <sdo_eg_md_2.ttl>];
+ mf:name "Test 17";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 3 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_3.html>;
+ mq:query <sdo_eg_md_3.ttl>];
+ mf:name "Test 18";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 4 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_4.html>;
+ mq:query <sdo_eg_md_4.ttl>];
+ mf:name "Test 19";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 5 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_5.html>;
+ mq:query <sdo_eg_md_5.ttl>];
+ mf:name "Test 20";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 6 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_6.html>;
+ mq:query <sdo_eg_md_6.ttl>];
+ mf:name "Test 21";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 7 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_7.html>;
+ mq:query <sdo_eg_md_7.ttl>];
+ mf:name "Test 22";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 8 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_8.html>;
+ mq:query <sdo_eg_md_8.ttl>];
+ mf:name "Test 23";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 9 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_9.html>;
+ mq:query <sdo_eg_md_9.ttl>];
+ mf:name "Test 24";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 10 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_10.html>;
+ mq:query <sdo_eg_md_10.ttl>];
+ mf:name "Test 25";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 11 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_11.html>;
+ mq:query <sdo_eg_md_11.ttl>];
+ mf:name "Test 26";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 12 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_12.html>;
+ mq:query <sdo_eg_md_12.ttl>];
+ mf:name "Test 27";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 13 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_13.html>;
+ mq:query <sdo_eg_md_13.ttl>];
+ mf:name "Test 28";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 14 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_14.html>;
+ mq:query <sdo_eg_md_14.ttl>];
+ mf:name "Test 29";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 15 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_15.html>;
+ mq:query <sdo_eg_md_15.ttl>];
+ mf:name "Test 30";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 16 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_16.html>;
+ mq:query <sdo_eg_md_16.ttl>];
+ mf:name "Test 31";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 17 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_17.html>;
+ mq:query <sdo_eg_md_17.ttl>];
+ mf:name "Test 32";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 18 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_18.html>;
+ mq:query <sdo_eg_md_18.ttl>];
+ mf:name "Test 33";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 19 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_19.html>;
+ mq:query <sdo_eg_md_19.ttl>];
+ mf:name "Test 34";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 20 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_20.html>;
+ mq:query <sdo_eg_md_20.ttl>];
+ mf:name "Test 35";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 21 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_21.html>;
+ mq:query <sdo_eg_md_21.ttl>];
+ mf:name "Test 36";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 22 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_22.html>;
+ mq:query <sdo_eg_md_22.ttl>];
+ mf:name "Test 37";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 23 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_23.html>;
+ mq:query <sdo_eg_md_23.ttl>];
+ mf:name "Test 38";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 24 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_24.html>;
+ mq:query <sdo_eg_md_24.ttl>];
+ mf:name "Test 39";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 25 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_25.html>;
+ mq:query <sdo_eg_md_25.ttl>];
+ mf:name "Test 40";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 26 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_26.html>;
+ mq:query <sdo_eg_md_26.ttl>];
+ mf:name "Test 41";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 27 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_27.html>;
+ mq:query <sdo_eg_md_27.ttl>];
+ mf:name "Test 42";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 28 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_28.html>;
+ mq:query <sdo_eg_md_28.ttl>];
+ mf:name "Test 43";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 29 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_29.html>;
+ mq:query <sdo_eg_md_29.ttl>];
+ mf:name "Test 44";
+ mf:result "true"] [ a mf:ManifestEntry;
+ rdfs:comment "Web Schemas TF: Schema.org tests: test 30 (format md)";
+ mf:action [ a mq:QueryTest;
+ mq:data <sdo_eg_md_30.html>;
+ mq:query <sdo_eg_md_30.ttl>];
+ mf:name "Test 45";
mf:result "true"])]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_1.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 1 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">Jane Doe</span>
+ <img src="janedoe.jpg" itemprop="image" />
+
+ <span itemprop="jobTitle">Professor</span>
+ <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="streetAddress">
+ 20341 Whitworth Institute
+ 405 N. Whitworth
+ </span>
+ <span itemprop="addressLocality">Seattle</span>,
+ <span itemprop="addressRegion">WA</span>
+ <span itemprop="postalCode">98052</span>
+ </div>
+ <span itemprop="telephone">(425) 123-4567</span>
+ <a href="mailto:jane-doe@xyz.edu" itemprop="email">
+ jane-doe@xyz.edu</a>
+
+ Jane's home page:
+ <a href="http://www.janedoe.com" itemprop="url">janedoe.com</a>
+
+ Graduate students:
+ <a href="http://www.xyz.edu/students/alicejones.html" itemprop="colleague">
+ Alice Jones</a>
+ <a href="http://www.xyz.edu/students/bobsmith.html" itemprop="colleague">
+ Bob Smith</a>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_1.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,22 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_1.html> md:item (
+ [ a schema:Person;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Seattle";
+ schema:addressRegion "WA";
+ schema:postalCode "98052";
+ schema:streetAddress """
+ 20341 Whitworth Institute
+ 405 N. Whitworth
+ """];
+ schema:colleague <http://www.xyz.edu/students/alicejones.html>,
+ <http://www.xyz.edu/students/bobsmith.html>;
+ schema:email <mailto:jane-doe@xyz.edu>;
+ schema:image <http://www.w3.org/TR/microdata-rdf/tests/janedoe.jpg>;
+ schema:jobTitle "Professor";
+ schema:name "Jane Doe";
+ schema:telephone "(425) 123-4567";
+ schema:url <http://www.janedoe.com>]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_10.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 10 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Product">
+ <img itemprop="image" src="dell-30in-lcd.jpg" />
+ <span itemprop="name">Dell UltraSharp 30" LCD Monitor</span>
+
+ <div itemprop="aggregateRating"
+ itemscope itemtype="http://schema.org/AggregateRating">
+ <span itemprop="ratingValue">87</span>
+ out of <span itemprop="bestRating">100</span>
+ based on <span itemprop="ratingCount">24</span> user ratings
+ </div>
+
+ <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
+ <span itemprop="lowPrice">$1250</span>
+ to <span itemprop="highPrice">$1495</span>
+ from <span itemprop="offerCount">8</span> sellers
+
+ Sellers:
+ <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+ <a itemprop="url" href="save-a-lot-monitors.com/dell-30.html">
+ Save A Lot Monitors - $1250</a>
+ </div>
+ <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+ <a itemprop="url" href="jondoe-gadgets.com/dell-30.html">
+ Jon Doe's Gadgets - $1350</a>
+ </div>
+ ...
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_10.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,20 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_10.html> md:item (
+ [ a schema:Product;
+ schema:aggregateRating [ a schema:AggregateRating;
+ schema:bestRating "100";
+ schema:ratingCount "24";
+ schema:ratingValue "87"];
+ schema:image <http://www.w3.org/TR/microdata-rdf/tests/dell-30in-lcd.jpg>;
+ schema:name "Dell UltraSharp 30\" LCD Monitor";
+ schema:offers [ a schema:AggregateOffer;
+ schema:highPrice "$1495";
+ schema:lowPrice "$1250";
+ schema:offerCount "8";
+ schema:offers [ a schema:Offer;
+ schema:url <http://www.w3.org/TR/microdata-rdf/tests/save-a-lot-monitors.com/dell-30.html>],
+ [ a schema:Offer;
+ schema:url <http://www.w3.org/TR/microdata-rdf/tests/jondoe-gadgets.com/dell-30.html>]]]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_11.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,63 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 11 (format md)</title>
+</head>
+
+<body itemscope itemtype="http://schema.org/WebPage">
+...
+<div itemprop="breadcrumb">
+ <a href="category/books.html">Books</a> >
+ <a href="category/books-literature.html">Literature & Fiction</a> >
+ <a href="category/books-classics">Classics</a>
+</div>
+
+<div itemscope itemtype="http://schema.org/Book">
+
+<img itemprop="image" src="catcher-in-the-rye-book-cover.jpg" />
+<span itemprop="name">The Catcher in the Rye</span> -
+ <link itemprop="bookFormat" href="http://schema.org/Paperback">Mass Market Paperback
+by <a itemprop="author" href="/author/jd_salinger.html">J.D. Salinger</a>
+
+<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
+ <span itemprop="ratingValue">4</span> stars -
+ <span itemprop="reviewCount">3077</span> reviews
+</div>
+
+<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+ Price: <span itemprop="price">$6.99</span>
+ <meta itemprop="priceCurrency" content="USD" />
+ <link itemprop="availability" href="http://schema.org/InStock">In Stock
+</div>
+
+Product details
+<span itemprop="numberOfPages">224</span> pages
+Publisher: <span itemprop="publisher">Little, Brown, and Company</span> -
+ <meta itemprop="datePublished" content="1991-05-01">May 1, 1991
+Language: <span itemprop="inLanguage">English</span>
+ISBN-10: <span itemprop="isbn">0316769487</span>
+
+Reviews:
+
+<div itemprop="review" itemscope itemtype="http://schema.org/Review">
+ <span itemprop="reviewRating">5</span> stars -
+ <b>"<span itemprop="name">A masterpiece of literature</span>" </b>
+ by <span itemprop="author">John Doe</span>,
+ Written on <meta itemprop="datePublished" content="2006-05-04">May 4, 2006
+ <span itemprop="reviewBody">I really enjoyed this book. It captures the essential
+ challenge people face as they try make sense of their lives and grow to adulthood.</span>
+</div>
+
+<div itemprop="review" itemscope itemtype="http://schema.org/Review">
+ <span itemprop="reviewRating">4</span> stars -
+ <b>"<span itemprop="name">A good read.</span>" </b>
+ by <span itemprop="author">Bob Smith</span>,
+ Written on <meta itemprop="datePublished" content="2006-06-15">June 15, 2006
+ <span itemprop="reviewBody">Catcher in the Rye is a fun book. It's a good book to read.</span>
+</div>
+
+</div>
+...
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_11.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,40 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_11.html> md:item (
+ [ a schema:WebPage;
+ schema:breadcrumb """
+ Books >
+ Literature & Fiction >
+ Classics
+"""] [ a schema:Book;
+ schema:aggregateRating [ a schema:AggregateRating;
+ schema:ratingValue "4";
+ schema:reviewCount "3077"];
+ schema:author <http://www.w3.org/author/jd_salinger.html>;
+ schema:bookFormat schema:Paperback;
+ schema:datePublished "1991-05-01";
+ schema:image <http://www.w3.org/TR/microdata-rdf/tests/catcher-in-the-rye-book-cover.jpg>;
+ schema:inLanguage "English";
+ schema:isbn "0316769487";
+ schema:name "The Catcher in the Rye";
+ schema:numberOfPages "224";
+ schema:offers [ a schema:Offer;
+ schema:availability schema:InStock;
+ schema:price "$6.99";
+ schema:priceCurrency "USD"];
+ schema:publisher "Little, Brown, and Company";
+ schema:review [ a schema:Review;
+ schema:author "John Doe";
+ schema:datePublished "2006-05-04";
+ schema:name "A masterpiece of literature";
+ schema:reviewBody """I really enjoyed this book. It captures the essential
+ challenge people face as they try make sense of their lives and grow to adulthood.""";
+ schema:reviewRating "5"],
+ [ a schema:Review;
+ schema:author "Bob Smith";
+ schema:datePublished "2006-06-15";
+ schema:name "A good read.";
+ schema:reviewBody "Catcher in the Rye is a fun book. It's a good book to read.";
+ schema:reviewRating "4"]]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_12.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 12 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Recipe">
+ <span itemprop="name">Mom's World Famous Banana Bread</span>
+ By <span itemprop="author">John Smith</span>,
+ <meta itemprop="datePublished" content="2009-05-08">May 8, 2009
+ <img itemprop="image" src="bananabread.jpg" />
+
+ <span itemprop="description">This classic banana bread recipe comes
+ from my mom -- the walnuts add a nice texture and flavor to the banana
+ bread.</span>
+
+ Prep Time: <meta itemprop="prepTime" content="PT15M">15 minutes
+ Cook time: <meta itemprop="cookTime" content="PT1H">1 hour
+ Yield: <span itemprop="recipeYield">1 loaf</span>
+
+ <div itemprop="nutrition"
+ itemscope itemtype="http://schema.org/NutritionInformation">
+ Nutrition facts:
+ <span itemprop="calories">240 calories</span>,
+ <span itemprop="fatContent">9 grams fat</span>
+ </div>
+
+ Ingredients:
+ - <span itemprop="ingredients">3 or 4 ripe bananas, smashed</span>
+ - <span itemprop="ingredients">1 egg</span>
+ - <span itemprop="ingredients">3/4 cup of sugar</span>
+ ...
+
+ Instructions:
+ <span itemprop="recipeInstructions">
+ Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add
+ the flour last. Pour the mixture into a loaf pan and bake for one hour.
+ </span>
+
+ 140 comments:
+ <meta itemprop="interactionCount" content="UserComments:140" />
+ From Janel, May 5 -- thank you, great recipe!
+ ...
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_12.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,27 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_12.html> md:item (
+ [ a schema:Recipe;
+ schema:author "John Smith";
+ schema:cookTime "PT1H";
+ schema:datePublished "2009-05-08";
+ schema:description """This classic banana bread recipe comes
+ from my mom -- the walnuts add a nice texture and flavor to the banana
+ bread.""";
+ schema:image <http://www.w3.org/TR/microdata-rdf/tests/bananabread.jpg>;
+ schema:ingredients "3 or 4 ripe bananas, smashed",
+ "1 egg",
+ "3/4 cup of sugar";
+ schema:interactionCount "UserComments:140";
+ schema:name "Mom's World Famous Banana Bread";
+ schema:nutrition [ a schema:NutritionInformation;
+ schema:calories "240 calories";
+ schema:fatContent "9 grams fat"];
+ schema:prepTime "PT15M";
+ schema:recipeInstructions """
+ Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add
+ the flour last. Pour the mixture into a loaf pan and bake for one hour.
+ """;
+ schema:recipeYield "1 loaf"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_13.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,86 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 13 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/MusicGroup">
+
+<h1 itemprop="name">Foo Fighters</h1>
+
+
+<div itemprop="video" itemscope itemtype="http://schema.org/VideoObject">
+ <h2>Video: <span itemprop="name">Interview with the Foo Fighters</span></h2>
+ <meta itemprop="duration" content="T1M33S" />
+ <meta itemprop="thumbnail" content="foo-fighters-interview-thumb.jpg" />
+ <object ...>
+ <param ...>
+ <embed type="application/x-shockwave-flash" ...>
+ </object>
+ <span itemprop="description">Catch this exclusive interview with
+ Dave Grohl and the Food Fighters about their new album, Rope.</span>
+</div>
+
+
+<h2>Songs</h2>
+
+<div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ <span itemprop="name">Rope</span>
+ <meta itemprop="url" content ="foo-fighters-rope.html">
+ Length: <meta itemprop="duration" content="PT4M5S">4:05 -
+ 14300 plays<meta itemprop="interactionCount" content="UserPlays:14300" />
+ <a href="foo-fighters-rope-play.html" itemprop="audio">Play</a>
+ <a href="foo-fighters-rope-buy.html" itemprop="offers">Buy</a>
+ From album: <a href="foo-fighters-wasting-light.html"
+ itemprop="inAlbum">Wasting Light</a>
+</div>
+
+<div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ <span itemprop="name">Everlong</span>
+ <meta itemprop="url" content ="foo-fighters-everlong.html">
+ Length: <meta itemprop="duration" content="PT6M33S">6:33 -
+ <span itemprop="playCount">11700</span> plays
+ <a href="foo-fighters-everlong-play.html" itemprop="audio">Play</a>
+ <a href="foo-fighters-everlong-buy.html" itemprop="offers">Buy</a>
+ From album: <a href="foo-fighters-color-and-shape.html"
+ itemprop="inAlbum">The Color And The Shape</a>
+</div>
+
+
+<h2>Upcoming shows</h2>
+
+<div itemprop="event" itemscope itemtype="http://schema.org/Event">
+ <a href="foo-fighters-may20-fedexforum" itemprop="url">
+ <span itemprop="name">FedExForum</span>
+ </a>
+ <span itemprop="location">Memphis, TN, US</span>
+ <meta itemprop="startDate" content="2011-05-20">May 20
+ <a href="ticketmaster.com/foofighters/may20-2011" itemprop="offers">Buy tickets</a>
+</div>
+
+<div itemprop="event" itemscope itemtype="http://schema.org/Event">
+ <a href="foo-fighters-may23-midamericacenter" itemprop="url">
+ <span itemprop="name">Mid America Center</span>
+ </a>
+ <span itemprop="location">Council Bluffs, IA, US</span>
+ <meta itemprop="startDate" content="2011-05-23">May 23
+ <a href="ticketmaster.com/foofighters/may23-2011" itemprop="offers">Buy tickets</a>
+</div>
+
+<h2><a href="foo-fighters-photos">28 Photos</a></h2>
+<a href="foofighters-1.jpg" itemprop="image"><img src="foofighters-thumb1.jpg" /></a>
+<a href="foofighters-2.jpg" itemprop="image"><img src="foofighters-thumb2.jpg" /></a>
+<a href="foofighters-3.jpg" itemprop="image"><img src="foofighters-thumb3.jpg" /></a>
+
+
+<h2>Comments:</h2>
+Excited about seeing them in concert next week. -Lawrence , Jan 23
+I dig their latest single. -Mary, Jan 19
+<meta itemprop="interactionCount" content="UserComments:18" />
+Showing 1-2 of 18 comments. <a href="foofighters-comments">More</a>
+
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_13.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,45 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_13.html> md:item (
+ [ a schema:MusicGroup;
+ schema:event [ a schema:Event;
+ schema:location "Memphis, TN, US";
+ schema:name "FedExForum";
+ schema:offers <http://www.w3.org/TR/microdata-rdf/tests/ticketmaster.com/foofighters/may20-2011>;
+ schema:startDate "2011-05-20";
+ schema:url <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-may20-fedexforum>],
+ [ a schema:Event;
+ schema:location "Council Bluffs, IA, US";
+ schema:name "Mid America Center";
+ schema:offers <http://www.w3.org/TR/microdata-rdf/tests/ticketmaster.com/foofighters/may23-2011>;
+ schema:startDate "2011-05-23";
+ schema:url <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-may23-midamericacenter>];
+ schema:image <http://www.w3.org/TR/microdata-rdf/tests/foofighters-1.jpg>,
+ <http://www.w3.org/TR/microdata-rdf/tests/foofighters-2.jpg>,
+ <http://www.w3.org/TR/microdata-rdf/tests/foofighters-3.jpg>;
+ schema:interactionCount "UserComments:18";
+ schema:name "Foo Fighters";
+ schema:track [ a schema:MusicRecording;
+ schema:audio <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-rope-play.html>;
+ schema:duration "PT4M5S";
+ schema:inAlbum <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-wasting-light.html>;
+ schema:interactionCount "UserPlays:14300";
+ schema:name "Rope";
+ schema:offers <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-rope-buy.html>;
+ schema:url "foo-fighters-rope.html"],
+ [ a schema:MusicRecording;
+ schema:audio <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-everlong-play.html>;
+ schema:duration "PT6M33S";
+ schema:inAlbum <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-color-and-shape.html>;
+ schema:name "Everlong";
+ schema:offers <http://www.w3.org/TR/microdata-rdf/tests/foo-fighters-everlong-buy.html>;
+ schema:playCount "11700";
+ schema:url "foo-fighters-everlong.html"];
+ schema:video [ a schema:VideoObject;
+ schema:description """Catch this exclusive interview with
+ Dave Grohl and the Food Fighters about their new album, Rope.""";
+ schema:duration "T1M33S";
+ schema:name "Interview with the Foo Fighters";
+ schema:thumbnail "foo-fighters-interview-thumb.jpg"]]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_14.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 14 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/ItemList">
+ <meta itemprop="mainContentOfPage" content="true"/>
+ <h2 itemprop="name">Top 10 laptops</h2><br>
+ <meta itemprop="itemListOrder" content="Descending" />
+ <p>1. <span itemprop="itemListElement">HP Pavilion dv6-6013cl</span></p>
+ <p>2. <span itemprop="itemListElement">Dell XPS 15 (Sandy Bridge)</span></p>
+ <p>3. <span itemprop="itemListElement">Lenovo ThinkPad X220</span></p>
+ ...
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_14.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,12 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_14.html> md:item (
+ [ a schema:ItemList;
+ schema:itemListElement "HP Pavilion dv6-6013cl",
+ "Dell XPS 15 (Sandy Bridge)",
+ "Lenovo ThinkPad X220";
+ schema:itemListOrder "Descending";
+ schema:mainContentOfPage "true";
+ schema:name "Top 10 laptops"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_15.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 15 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Movie">
+
+<h1 itemprop="name">Pirates of the Carribean: On Stranger Tides (2011)</h1>
+<span itemprop="description">Jack Sparrow and Barbossa embark on a quest to
+ find the elusive fountain of youth, only to discover that Blackbeard and
+ his daughter are after it too.</span>
+Director:
+ <div itemprop="director" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Rob Marshall</span>
+</div>
+Writers:
+ <div itemprop="author" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Ted Elliott</span>
+</div>
+<div itemprop="author" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Terry Rossio</span>
+</div>
+, and 7 more credits
+Stars:
+ <div itemprop="actor" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Johnny Depp</span>,
+ </div>
+<div itemprop="actor" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Penelope Cruz</span>,
+</div>
+<div itemprop="actor" itemscope itemtype="http://schema.org/Person">
+<span itemprop="name">Ian McShane</span>
+</div>
+<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
+ <span itemprop="ratingValue">8</span>/<span itemprop="bestRating">10</span> stars from
+ <span itemprop="ratingCount">200</span> users.
+ Reviews: <span itemprop="reviewCount">50</span>.
+</div>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_15.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,27 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_15.html> md:item (
+ [ a schema:Movie;
+ schema:actor [ a schema:Person;
+ schema:name "Johnny Depp"],
+ [ a schema:Person;
+ schema:name "Penelope Cruz"],
+ [ a schema:Person;
+ schema:name "Ian McShane"];
+ schema:aggregateRating [ a schema:AggregateRating;
+ schema:bestRating "10";
+ schema:ratingCount "200";
+ schema:ratingValue "8";
+ schema:reviewCount "50"];
+ schema:author [ a schema:Person;
+ schema:name "Ted Elliott"],
+ [ a schema:Person;
+ schema:name "Terry Rossio"];
+ schema:description """Jack Sparrow and Barbossa embark on a quest to
+ find the elusive fountain of youth, only to discover that Blackbeard and
+ his daughter are after it too.""";
+ schema:director [ a schema:Person;
+ schema:name "Rob Marshall"];
+ schema:name "Pirates of the Carribean: On Stranger Tides (2011)"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_16.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 16 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Table">
+ <meta itemprop="mainContentOfPage" content="true"/>
+ <h2 itemprop="about">list of presidents</h2>
+ <table>
+ <tr><th>President</th><th>Party</th><tr>
+ <tr>
+ <td>George Washington (1789-1797)</td>
+ <td>no party</td>
+ </tr>
+ <tr>
+ <td>John Adams (1797-1801)</td>
+ <td>Federalist</td>
+ </tr>
+ ...
+ </table>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_16.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,8 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_16.html> md:item (
+ [ a schema:Table;
+ schema:about "list of presidents";
+ schema:mainContentOfPage "true"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_17.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 17 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="name">Google Inc.</span>
+ P.O. Box<span itemprop="postOfficeBoxNumber">1234</span>
+ <span itemprop="addressLocality">Mountain View</span>,
+ <span itemprop="addressRegion">CA</span>
+ <span itemprop="postalCode">94043</span>
+ <span itemprop="addressCountry">United States</span>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_17.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,12 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_17.html> md:item (
+ [ a schema:PostalAddress;
+ schema:addressCountry "United States";
+ schema:addressLocality "Mountain View";
+ schema:addressRegion "CA";
+ schema:name "Google Inc.";
+ schema:postOfficeBoxNumber "1234";
+ schema:postalCode "94043"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_18.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 18 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/CreativeWork">
+<img itemprop="image" src="videogame.jpg" />
+<span itemprop="name">Resistance 3: Fall of Man</span>
+by <span itemprop="author">Sony</span>,
+Platform: Playstation 3
+Rated:<span itemprop="contentRating">Mature</span>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_18.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,10 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_18.html> md:item (
+ [ a schema:CreativeWork;
+ schema:author "Sony";
+ schema:contentRating "Mature";
+ schema:image <http://www.w3.org/TR/microdata-rdf/tests/videogame.jpg>;
+ schema:name "Resistance 3: Fall of Man"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_19.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 19 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/ImageObject">
+ <h2 itemprop="name">Beach in Mexico</h2>
+ <img src="mexico-beach.jpg" itemprop="contentURL" />
+
+ By <span itemprop="author">Jane Doe</span>
+ Photographed in
+ <span itemprop="contentLocation">Puerto Vallarta, Mexico</span>
+ Date uploaded:
+ <meta itemprop="datePublished" content="2008-01-25">Jan 25, 2008
+
+ <span itemprop="description">I took this picture while on vacation last year.</span>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_19.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,12 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_19.html> md:item (
+ [ a schema:ImageObject;
+ schema:author "Jane Doe";
+ schema:contentLocation "Puerto Vallarta, Mexico";
+ schema:contentURL <http://www.w3.org/TR/microdata-rdf/tests/mexico-beach.jpg>;
+ schema:datePublished "2008-01-25";
+ schema:description "I took this picture while on vacation last year.";
+ schema:name "Beach in Mexico"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_2.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 2 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/LocalBusiness">
+ <h1><span itemprop="name">Beachwalk Beachwear & Giftware</span></h1>
+ <span itemprop="description"> A superb collection of fine gifts and clothing
+ to accent your stay in Mexico Beach.</span>
+ <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="streetAddress">3102 Highway 98</span>
+ <span itemprop="addressLocality">Mexico Beach</span>,
+ <span itemprop="addressRegion">FL</span>
+ </div>
+ Phone: <span itemprop="telephone">850-648-4200</span>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_2.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,13 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_2.html> md:item ([ a schema:LocalBusiness;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Mexico Beach";
+ schema:addressRegion "FL";
+ schema:streetAddress "3102 Highway 98"];
+ schema:description """ A superb collection of fine gifts and clothing
+ to accent your stay in Mexico Beach.""";
+ schema:name "Beachwalk Beachwear & Giftware";
+ schema:telephone "850-648-4200"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_20.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 20 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/MusicPlaylist">
+ <span itemprop="name">Classic Rock Playlist</span>
+ <meta itemprop="numTracks" content="5"/>
+
+ <div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ 1.<span itemprop="name">Sweet Home Alabama</span> -
+ <span itemprop="byArtist">Lynard Skynard</span>
+ <meta content="sweet-home-alabama" itemprop="url" />
+ <meta content="PT4M45S" itemprop="duration" />
+ <meta content="Second Helping" itemprop="inAlbum" />
+ </div>
+
+ <div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ 2.<span itemprop="name">Shook you all Night Long</span> -
+ <span itemprop="byArtist">AC/DC</span>
+ <meta content="shook-you-all-night-long" itemprop="url" />
+ <meta content="PT3M32S" itemprop="duration" />
+ <meta content="Back In Black" itemprop="inAlbum" />
+ </div>
+
+ <div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ 3.<span itemprop="name">Sharp Dressed Man</span> -
+ <span itemprop="byArtist">ZZ Top</span>
+ <meta content="sharp-dressed-man" itemprop="url" />
+ <meta content="PT4M13S" itemprop="duration" />
+ <meta content="Eliminator" itemprop="inAlbum" />
+ </div>
+
+ <div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ 4.<span itemprop="name">Old Time Rock and Roll</span> -
+ <span itemprop="byArtist">Bob Seger</span>
+ <meta content="old-time-rock-and-roll" itemprop="url" />
+ <meta content="PT3M12S" itemprop="duration" />
+ <meta content="Stranger In Town" itemprop="inAlbum" />
+ </div>
+
+ <div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ 5.<span itemprop="name">Hurt So Good</span> -
+ <span itemprop="byArtist">John Cougar</span>
+ <meta content="hurt-so-good" itemprop="url" />
+ <meta content="PT3M39S" itemprop="duration" />
+ <meta content="American Fool" itemprop="inAlbum" />
+ </div>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_20.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,38 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_20.html> md:item (
+ [ a schema:MusicPlaylist;
+ schema:name "Classic Rock Playlist";
+ schema:numTracks "5";
+ schema:track [ a schema:MusicRecording;
+ schema:byArtist "Lynard Skynard";
+ schema:duration "PT4M45S";
+ schema:inAlbum "Second Helping";
+ schema:name "Sweet Home Alabama";
+ schema:url "sweet-home-alabama"],
+ [ a schema:MusicRecording;
+ schema:byArtist "AC/DC";
+ schema:duration "PT3M32S";
+ schema:inAlbum "Back In Black";
+ schema:name "Shook you all Night Long";
+ schema:url "shook-you-all-night-long"],
+ [ a schema:MusicRecording;
+ schema:byArtist "ZZ Top";
+ schema:duration "PT4M13S";
+ schema:inAlbum "Eliminator";
+ schema:name "Sharp Dressed Man";
+ schema:url "sharp-dressed-man"],
+ [ a schema:MusicRecording;
+ schema:byArtist "Bob Seger";
+ schema:duration "PT3M12S";
+ schema:inAlbum "Stranger In Town";
+ schema:name "Old Time Rock and Roll";
+ schema:url "old-time-rock-and-roll"],
+ [ a schema:MusicRecording;
+ schema:byArtist "John Cougar";
+ schema:duration "PT3M39S";
+ schema:inAlbum "American Fool";
+ schema:name "Hurt So Good";
+ schema:url "hurt-so-good"]]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_21.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 21 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Article">
+ <span itemprop="name">How to Tie a Reef Knot</span>
+ by <span itemprop="author">John Doe</span>
+ This article has been tweeted 1203 times and contains 78 user comments.
+ <meta itemprop="interactionCount" content="UserTweets:1203"/>
+ <meta itemprop="interactionCount" content="UserComments:78"/>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_21.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,10 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_21.html> md:item (
+ [ a schema:Article;
+ schema:author "John Doe";
+ schema:interactionCount "UserTweets:1203",
+ "UserComments:78";
+ schema:name "How to Tie a Reef Knot"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_22.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 22 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/CivicStructure">
+ <span itemprop="name">Springfield Town Hall</span>
+ Hours:
+ <meta itemprop="openingHours" content="Mo-Fr 09:00-17:30">Mon-Fri 9am - 5:30pm
+ <meta itemprop="openingHours" content="Sa 09:00-12:00">Sat 9am - 12pm
+ Closed Sun
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_22.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,9 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_22.html> md:item (
+ [ a schema:CivicStructure;
+ schema:name "Springfield Town Hall";
+ schema:openingHours "Mo-Fr 09:00-17:30",
+ "Sa 09:00-12:00"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_23.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 23 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/EducationalOrganization">
+ <span itemprop="name">Palo Alto High School</span>
+ <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="streetAddress">50 Embarcadero Rd</span>
+ <span itemprop="addressLocality">Palo Alto</span>,
+ <span itemprop="addressRegion">CA</span> <span itemprop="postalCode">94301</span>
+ </div>
+ List of Alumni
+ <span itemprop="alumni" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">John Doe</span>
+ </span>
+ <span itemprop="alumni" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">Sarah Glames</span>
+ </span>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_23.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,16 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_23.html> md:item (
+ [ a schema:EducationalOrganization;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Palo Alto";
+ schema:addressRegion "CA";
+ schema:postalCode "94301";
+ schema:streetAddress "50 Embarcadero Rd"];
+ schema:alumni [ a schema:Person;
+ schema:name "John Doe"],
+ [ a schema:Person;
+ schema:name "Sarah Glames"];
+ schema:name "Palo Alto High School"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_24.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 24 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/TVSeries">
+ <span itemprop="name">Greys Anatomy</span> is a medical drama television series created by
+ <div itemscope itemtype="http://schema.org/Person">
+ <span itemprop="author">Shonda Rimes</span>
+ </div>
+ Starring:
+ <div itemprop="actor" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">Justin Chambers</span>
+ </div>
+ <div itemprop="actor" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">Jessica Capshaw</span>
+ </div>
+ <div itemprop="season" itemscope itemtype="http://schema.org/TVSeason">
+ <span itemprop="name">Season 1</span> -
+ <meta itemprop="numberofEpisodes" content="14"/>
+ <meta itemprop="datePublished" content="2005-05-22">May 22, 2005
+ </div>
+ <div itemprop="season" itemscope itemtype="http://schema.org/TVSeason">
+ <span itemprop="name">Season 2</span> -
+ <meta itemprop="numberofEpisodes" content="27"/>
+ <meta itemprop="datePublished" content="2006-05-14">May 14, 2006
+ <div itemprop="episode" itemscope itemtype="http://schema.org/TVEpisode">
+ <span itemprop="name">Episode 1</span> -
+ <meta itemprop="episodeNumber" content="1"/>
+ </div>
+ </div>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_24.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,23 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_24.html> md:item (
+ [ a schema:TVSeries;
+ schema:actor [ a schema:Person;
+ schema:name "Justin Chambers"],
+ [ a schema:Person;
+ schema:name "Jessica Capshaw"];
+ schema:name "Greys Anatomy";
+ schema:season [ a schema:TVSeason;
+ schema:datePublished "2005-05-22";
+ schema:name "Season 1";
+ schema:numberofEpisodes "14"],
+ [ a schema:TVSeason;
+ schema:datePublished "2006-05-14";
+ schema:episode [ a schema:TVEpisode;
+ schema:episodeNumber "1";
+ schema:name "Episode 1"];
+ schema:name "Season 2";
+ schema:numberofEpisodes "27"]] [ a schema:Person;
+ schema:author "Shonda Rimes"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_25.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 25 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/MusicAlbum">
+ <h1 itemprop="name"> King of Limbs </h1>
+ <meta content="/artist/radiohead/album/the-king-of-limbs" itemprop="url" />
+ <img src="king-of-limbs.jpg" itemprop="image" />
+ <meta content="8" itemprop="numTracks" />
+ <meta content="Alt/Punk" itemprop="genre" />
+
+ <h2 itemprop="byArtist" itemscope itemtype="http://schema.org/MusicGroup">
+ <span itemprop="name">Radiohead</span>
+ </h2>
+
+ <h3>Sample Tracks</h3>
+ <div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ <span itemprop="name">Bloom</span>
+ <meta content="/artist/radiohead/album/the-king-of-limbs/track/bloom" itemprop="url" />
+ <meta content="PT5M14S" itemprop="duration" />5:14
+ </div>
+ <div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
+ <span itemprop="name">Morning Mr Magpie</span>
+ <meta content="/artist/radiohead/album/the-king-of-limbs/track/morning-mr-magpie" itemprop="url" />
+ <meta content="PT4M40S" itemprop="duration" />4:40
+ </div>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_25.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,21 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_25.html> md:item (
+ [ a schema:MusicAlbum;
+ schema:byArtist [ a schema:MusicGroup;
+ schema:name "Radiohead"];
+ schema:genre "Alt/Punk";
+ schema:image <http://www.w3.org/TR/microdata-rdf/tests/king-of-limbs.jpg>;
+ schema:name " King of Limbs ";
+ schema:numTracks "8";
+ schema:track [ a schema:MusicRecording;
+ schema:duration "PT5M14S";
+ schema:name "Bloom";
+ schema:url "/artist/radiohead/album/the-king-of-limbs/track/bloom"],
+ [ a schema:MusicRecording;
+ schema:duration "PT4M40S";
+ schema:name "Morning Mr Magpie";
+ schema:url "/artist/radiohead/album/the-king-of-limbs/track/morning-mr-magpie"];
+ schema:url "/artist/radiohead/album/the-king-of-limbs"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_26.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,72 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 26 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/JobPosting">
+ <meta itemprop="specialCommitments" content="VeteranCommit" />
+ <h2 itemprop="title">Software Engineer</h2>
+ <span>
+ <p><strong>Location:</strong> <span itemprop="jobLocation" itemscope itemtype="http://schema.org/Place"><span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="addressLocality">Kirkland</span> <span itemprop="addressRegion">WA</span></span></span></p>
+ </span>
+
+ <p><strong>Industry:</strong> <span itemprop="industry">Computer Software</span>
+
+ <br><strong>Occupational Category:</strong> <span itemprop="occupationalCategory">15-1132.00 Software Developers, Application</span>
+
+ <br><strong>Hours:</strong> <span itemprop="employmentType">Full-time</span>, <span itemprop="workHours">40 hours per week</span>
+
+ <br><strong>Salary:</strong> <span itemprop="salaryCurrency">USD</span> <span itemprop="baseSalary">100000</span>
+ </p>
+
+ <p itemprop="description">
+ <strong>Description:</strong> <span itemprop="hiringOrganization" itemscope itemtype="http://schema.org/Organization"><span itemprop="name">ABC Company Inc.</span>
+ seeks a full-time mid-level software engineer to develop in-house tools.</span>
+ </p>
+
+ <p><strong>Responsibilities:</strong></p>
+ <ul itemprop="responsibilities">
+ <li>Design and write specifications for tools for in-house costumers</li>
+ <li>Build tools according to specifications</li>
+ </ul>
+
+ <p><strong>Educational requirements:</strong></p>
+ <ul itemprop="educationRequirements">
+ <li>Bachelor's Degree in Computer Science, Information Systems or related fields of study.</li>
+ </ul>
+
+ <p><strong>Experience requirements:</strong></p>
+ <ul itemprop="experienceRequirements">
+ <li>Minumum 3 years experience as a software engineer</li>
+ </ul>
+
+ <p><strong>Desired Skills:</strong></p>
+ <ul itemprop="skills">
+ <li>Web application development using Java/J2EE</li>
+ <li>Web application development using Python or familiarity with dynamic programming languages</li>
+ </ul>
+
+ <p><strong>Qualifications:</strong></p>
+ <ul itemprop="qualifications">
+ <li>Ability to work in a team environment with members of varying skill levels.</li>
+ <li>Highly motivated.</li>
+ <li>Learns quickly.</li>
+ </ul>
+
+ <p><strong>Benefits:</strong></p>
+ <ul><li>ABC Corp provides top-tier employee compensation benefits and a relaxed, team-oriented work environment, including:<span itemprop="benefits"> Medical, Life, Dental</span></li>
+ </ul>
+
+ <p><strong>Incentives:</strong></p>
+ <ul><li><span itemprop="incentives">Performance-based annual bonus plan, project-completion bonuses</span></li>
+ </ul>
+
+ <p>If interested in this position, please email us your resume, along with salary requirements and a cover letter to Jobs@abc.123.</p>
+ <p>Date Posted: <span itemprop="datePosted">2011-10-31</span></p>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_26.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,41 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_26.html> md:item (
+ [ a schema:JobPosting;
+ schema:baseSalary "100000";
+ schema:benefits " Medical, Life, Dental";
+ schema:datePosted "2011-10-31";
+ schema:description """
+ Description: ABC Company Inc.
+ seeks a full-time mid-level software engineer to develop in-house tools.
+ """;
+ schema:educationRequirements """Bachelor's Degree in Computer Science, Information Systems or related fields of study.
+ """;
+ schema:employmentType "Full-time";
+ schema:experienceRequirements """Minumum 3 years experience as a software engineer
+ """;
+ schema:hiringOrganization [ a schema:Organization;
+ schema:name "ABC Company Inc."];
+ schema:incentives "Performance-based annual bonus plan, project-completion bonuses";
+ schema:industry "Computer Software";
+ schema:jobLocation [ a schema:Place;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Kirkland";
+ schema:addressRegion "WA"]];
+ schema:occupationalCategory "15-1132.00 Software Developers, Application";
+ schema:qualifications """Ability to work in a team environment with members of varying skill levels.
+ Highly motivated.
+ Learns quickly.
+ """;
+ schema:responsibilities """Design and write specifications for tools for in-house costumers
+ Build tools according to specifications
+ """;
+ schema:salaryCurrency "USD";
+ schema:skills """Web application development using Java/J2EE
+ Web application development using Python or familiarity with dynamic programming languages
+ """;
+ schema:specialCommitments "VeteranCommit";
+ schema:title "Software Engineer";
+ schema:workHours "40 hours per week"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_27.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 27 (format md)</title>
+</head>
+<body>
+
+<h1>Guidelines</h1>
+<ul>
+ <li>Recommendation:
+ <span itemscope itemtype="http://schema.org/MedicalGuidelineRecommendation">
+ <span itemprop="subject" itemscope itemtype="http://schema.org/Drug">
+ <span itemprop="name">NewvoDrug</span>
+ </span>
+ is indicated for initial treatment of
+ <span itemprop="subject" itemscope itemtype="http://schema.org/MedicalCondition">
+ <span itemprop="name">cardiac failure</span>
+ </span>
+ for all adult patients.
+ (<span itemprop="recommendationStrength">Strong recommendation</span>;
+ <link itemprop="evidenceLevel" href="http://schema.org/EvidenceLevelA"/>
+ Class I,
+ based on
+ <span itemprop="evidenceOrigin">multiple randomized clinical trials</span>)
+ </span>
+ </li>
+ <li>Contraindication:
+ <span itemscope itemtype="http://schema.org/MedicalGuidelineContraindication">
+ <span itemprop="subject" itemscope itemtype="http://schema.org/MedicalCondition">
+ <span itemprop="name">cardiac failure</span></span> should never
+ be treated with
+ <span itemprop="subject" itemscope
+ itemtype="http://schema.org/TherapeuticProcedure">
+ <span itemprop="name">appendectomy</span></span> in adults.
+ (Class III, <link itemprop="evidenceLevel" href="http://schema.org/EvidenceLevelC"/>
+ <span itemprop="evidenceOrigin">standard of care</span>)
+ </span></li>
+</ul>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_27.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,20 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_27.html> md:item (
+ [ a schema:MedicalGuidelineRecommendation;
+ schema:evidenceLevel schema:EvidenceLevelA;
+ schema:evidenceOrigin "multiple randomized clinical trials";
+ schema:recommendationStrength "Strong recommendation";
+ schema:subject [ a schema:Drug;
+ schema:name "NewvoDrug"],
+ [ a schema:MedicalCondition;
+ schema:name "cardiac failure"]]
+ [ a schema:MedicalGuidelineContraindication;
+ schema:evidenceLevel schema:EvidenceLevelC;
+ schema:evidenceOrigin "standard of care";
+ schema:subject [ a schema:MedicalCondition;
+ schema:name "cardiac failure"],
+ [ a schema:TherapeuticProcedure;
+ schema:name "appendectomy"]]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_28.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 28 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/MedicalScholarlyArticle">
+ <link itemprop="audience" href="http://schema.org/Clinician"/>
+ <meta itemprop="publicationType" content="Meta-Analysis"/>
+ <h1><span itemprop="name">New guidelines for metformin and
+ diabetes mellitus</span></h1>
+ <p>
+ <span itemprop="author" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">Dr. John Smith</span>
+ <br><span itemprop="affiliation">Medical University</span>
+ </span>
+ <br><span itemprop="datePublished">2012-03-24</span>
+ <p><b>Abstract:</b>
+ We review clinical evidence related to the use of metformin for
+ treatment of type-2 diabetes mellitus and provide new clinical guideline
+ recommendations.</p>
+ <p><b>MeSH subject headings:</b>
+ <span itemprop="about" itemscope itemtype="http://schema.org/Drug">
+ <span itemprop="name">Metformin</span>
+ <span itemprop="code" itemscope
+ itemtype="http://schema.org/MedicalCode"
+ itemid="http://www.ncbi.nlm.nih.gov/mesh/D02.078.370.141.450">
+ <!-- Note: use of itemid is not mandatory, but recommended when an
+ external enumeration is available -->
+ <meta itemprop="code" content="D02.078.370.141.450"/>
+ <meta itemprop="codingSystem" content="MeSH"/>
+ </span>
+ </span>;
+ <span itemprop="about" itemscope itemtype="http://schema.org/MedicalCondition">
+ <span itemprop="name">Diabetes Mellitus, Type 2</span>
+ <span itemprop="code" itemscope
+ itemtype="http://schema.org/MedicalCode"
+ itemid="http://www.ncbi.nlm.nih.gov/mesh/C18.452.394.750.149">
+ <!-- Note: use of itemid is not mandatory, but recommended when an
+ external enumeration is available -->
+ <meta itemprop="code" content="C18.452.394.750.149"/>
+ <meta itemprop="codingSystem" content="MeSH"/>
+ </span>
+ </span>
+ </p>
+ ...
+ <h3>Guidelines</h3>
+ <span itemscope itemtype="http://schema.org/MedicalGuidelineRecommendation">
+ Recommendation: we recommend monotherapy with
+ <span itemprop="subject">metformin</span> as an initial pharmacologic therapy
+ to treat most patients with <span itemprop="subject">type 2 diabetes</span>
+ (Grade: <span itemprop="recommendationStrength">strong recommendation</span>;
+ <link itemprop="evidenceLevel" href="http://schema.org/EvidenceLevelA"/>high-quality
+ evidence).
+ </span>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_28.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,32 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_28.html> md:item (
+ [ a schema:MedicalScholarlyArticle;
+ schema:about [ a schema:Drug;
+ schema:code <http://www.ncbi.nlm.nih.gov/mesh/D02.078.370.141.450>;
+ schema:name "Metformin"],
+ [ a schema:MedicalCondition;
+ schema:code <http://www.ncbi.nlm.nih.gov/mesh/C18.452.394.750.149>;
+ schema:name "Diabetes Mellitus, Type 2"];
+ schema:audience schema:Clinician;
+ schema:author [ a schema:Person;
+ schema:affiliation "Medical University";
+ schema:name "Dr. John Smith"];
+ schema:datePublished "2012-03-24";
+ schema:name """New guidelines for metformin and
+ diabetes mellitus""";
+ schema:publicationType "Meta-Analysis"] [ a schema:MedicalGuidelineRecommendation;
+ schema:evidenceLevel schema:EvidenceLevelA;
+ schema:recommendationStrength "strong recommendation";
+ schema:subject "metformin",
+ "type 2 diabetes"]) .
+
+<http://www.ncbi.nlm.nih.gov/mesh/C18.452.394.750.149> a schema:MedicalCode;
+ schema:code "C18.452.394.750.149";
+ schema:codingSystem "MeSH" .
+
+<http://www.ncbi.nlm.nih.gov/mesh/D02.078.370.141.450> a schema:MedicalCode;
+ schema:code "D02.078.370.141.450";
+ schema:codingSystem "MeSH" .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_29.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 29 (format md)</title>
+</head>
+
+<body itemscope itemtype="http://schema.org/MedicalWebPage">
+ <link itemprop="audience" href="http://schema.org/Patient" />
+ <link itemprop="specialty" href="http://schema.org/Cardiovascular" />
+ <meta itemprop="lastReviewed" content="2011-09-14"/>
+ <h1>About
+ <span itemprop="about" itemscope itemtype="http://schema.org/MedicalCondition">
+ <span itemprop="name">High Blood Pressure</span>
+ (<span itemprop="name">hypertension</span>)</span>
+ </h1>
+ ...
+ <h2><span itemprop="aspect">Diagnosis</span></h2>
+ High blood pressure is diagnosed by measuring ...
+ ...
+ <h2><span itemprop="aspect">Treatment</span></h2>
+ There are many common treatments for high blood pressure,
+ including
+ <span itemscope itemtype="http://schema.org/DrugClass">
+ <span itemprop="name">beta-blocker</span> drugs such as
+ <span itemprop="drug" itemscope itemtype="http://schema.org/Drug">
+ <span itemprop="nonProprietaryName">propanaolol</span>
+ (<span itemprop="otherName">Innopran</span>)
+ </span>
+ and
+ <span itemprop="drug" itemscope itemtype="http://schema.org/Drug">
+ <span itemprop="nonProprietaryName">atenolol</span>
+ (<span itemprop="otherName">Tenormin</span>)
+ </span> ...
+ ...
+</body>
+
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_29.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,21 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_29.html> md:item (
+ [ a schema:MedicalWebPage;
+ schema:about [ a schema:MedicalCondition;
+ schema:name "High Blood Pressure",
+ "hypertension"];
+ schema:aspect "Diagnosis",
+ "Treatment";
+ schema:audience schema:Patient;
+ schema:lastReviewed "2011-09-14";
+ schema:specialty schema:Cardiovascular] [ a schema:DrugClass;
+ schema:drug [ a schema:Drug;
+ schema:nonProprietaryName "propanaolol";
+ schema:otherName "Innopran"],
+ [ a schema:Drug;
+ schema:nonProprietaryName "atenolol";
+ schema:otherName "Tenormin"];
+ schema:name "beta-blocker"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_3.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 3 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Restaurant">
+ <span itemprop="name">GreatFood</span>
+
+ <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
+ <span itemprop="ratingValue">4</span> stars -
+ based on <span itemprop="reviewCount">250</span> reviews
+ </div>
+
+ <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="streetAddress">1901 Lemur Ave</span>
+ <span itemprop="addressLocality">Sunnyvale</span>,
+ <span itemprop="addressRegion">CA</span> <span itemprop="postalCode">94086</span>
+ </div>
+ <span itemprop="telephone">(408) 714-1489</span>
+ <a itemprop="url" href="http://www.dishdash.com">www.greatfood.com</a>
+
+ Hours:
+ <meta itemprop="openingHours" content="Mo-Sa 11:00-14:30">Mon-Sat 11am - 2:30pm
+ <meta itemprop="openingHours" content="Mo-Th 17:00-21:30">Mon-Thu 5pm - 9:30pm
+ <meta itemprop="openingHours" content="Fr-Sa 17:00-22:00">Fri-Sat 5pm - 10:00pm
+
+ Categories:
+ <span itemprop="servesCuisine">
+ Middle Eastern
+ </span>,
+ <span itemprop="servesCuisine">
+ Mediterranean
+ </span>
+
+ Price Range: <span itemprop="priceRange">$$</span>
+ Takes Reservations: Yes
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_3.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,27 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_3.html> md:item (
+ [ a schema:Restaurant;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Sunnyvale";
+ schema:addressRegion "CA";
+ schema:postalCode "94086";
+ schema:streetAddress "1901 Lemur Ave"];
+ schema:aggregateRating [ a schema:AggregateRating;
+ schema:ratingValue "4";
+ schema:reviewCount "250"];
+ schema:name "GreatFood";
+ schema:openingHours "Mo-Sa 11:00-14:30",
+ "Mo-Th 17:00-21:30",
+ "Fr-Sa 17:00-22:00";
+ schema:priceRange "$$";
+ schema:servesCuisine """
+ Middle Eastern
+ """,
+ """
+ Mediterranean
+ """;
+ schema:telephone "(408) 714-1489";
+ schema:url <http://www.dishdash.com>]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_30.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,109 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 30 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/MedicalCondition">
+ <h1><span itemprop="name">Stable angina</span>
+ (<span itemprop="alternateName">angina pectoris</span>)</h1>
+ <span itemprop="code" itemscope itemtype="http://schema.org/MedicalCode">
+ <meta itemprop="code" content="413"/>
+ <meta itemprop="codingSystem" content="ICD-9"/>
+ </span>
+ Stable angina is a medical condition that affects the
+ <span itemprop="associatedAnatomy" itemscope itemtype="http://schema.org/AnatomicalStructure">
+ <span itemprop="name">heart</span>
+ </span>.
+ The most common causes are
+ <span itemprop="cause" itemscope itemtype="http://schema.org/MedicalCause">
+ <span itemprop="name">atherosclerosis</span>
+ </span>
+ and
+ <span itemprop="cause" itemscope itemtype="http://schema.org/MedicalCause">
+ <span itemprop="name">spasms of the epicardial artery</span>
+ </span>.
+ Typical symptoms include:
+ <ul>
+ <li><span itemprop="signOrSymptom" itemscope itemtype="http://schema.org/MedicalSymptom">
+ <span itemprop="name">chest discomfort</span>
+ </span>
+ </li>
+ <li><span itemprop="signOrSymptom" itemscope itemtype="http://schema.org/MedicalSymptom">
+ <span itemprop="name">feeling of tightness, heaviness,
+ or pain in the chest</span>
+ </span>
+ </li>
+ </ul>
+ Both stable angina and a
+ <span itemprop="differentialDiagnosis" itemscope itemtype="http://schema.org/DDxElement">
+ <span itemprop="diagnosis" itemscope itemtype="http://schema.org/MedicalCondition">
+ <span itemprop="name">heart attack</span>
+ </span>
+ result in chest pain, but a heart attack will have
+ <span itemprop="distinguishingSign" itemscope itemtype="http://schema.org/MedicalSymptom">
+ <span itemprop="name">chest pain lasting at least 10 minutes at rest</span>
+ </span>,
+ <span itemprop="distinguishingSign" itemscope itemtype="http://schema.org/MedicalSymptom">
+ <span itemprop="name">repeated episodes of chest pain at rest
+ lasting 5 or more minutes
+ </span>
+ </span>, or
+ <span itemprop="distinguishingSign" itemscope itemtype="http://schema.org/MedicalSymptom">
+ <span itemprop="name">an accelerating pattern of
+ chest discomfort (episodes that are more frequent, severe,
+ longer in duration, and precipitated by minimal exertion)
+ </span>
+ </span>
+ </span>.
+ <br>
+ Risk factors for stable angina include:
+ <ul>
+ <li><span itemprop="riskFactor" itemscope itemtype="http://schema.org/MedicalRiskFactor">
+ <span itemprop="name">Age</span>
+ </span></li>
+ <li><span itemprop="riskFactor" itemscope itemtype="http://schema.org/MedicalRiskFactor">
+ <span itemprop="name">Gender</span>
+ </span></li>
+ <li><span itemprop="riskFactor" itemscope itemtype="http://schema.org/MedicalRiskFactor">
+ <span itemprop="name">Systolic blood pressure</span>
+ </span></li>
+ <li><span itemprop="riskFactor" itemscope itemtype="http://schema.org/MedicalRiskFactor">
+ <span itemprop="name">Smoking</span>
+ </span></li>
+ <li><span itemprop="riskFactor" itemscope itemtype="http://schema.org/MedicalRiskFactor">
+ <span itemprop="name">Total cholesterol and/or cholesterol:HDL ratio</span>
+ </span></li>
+ <li><span itemprop="riskFactor" itemscope itemtype="http://schema.org/MedicalRiskFactor">
+ <span itemprop="name">Coronary artery disease</span>
+ </span></li>
+ </ul>
+ The initial treatment for stable angina is usually drug therapy
+ with
+ <span itemprop="possibleTreatment" itemscope itemtype="http://schema.org/Drug">
+ <span itemprop="name">aspirin</span>
+ </span>,
+ <span itemprop="possibleTreatment" itemscope itemtype="http://schema.org/DrugClass">
+ <span itemprop="name">beta blockers</span>
+ </span>,
+ <span itemprop="possibleTreatment" itemscope itemtype="http://schema.org/DrugClass">
+ <span itemprop="name">ACE inhibitors</span>
+ </span>, and/or
+ <span itemprop="possibleTreatment" itemscope itemtype="http://schema.org/Drug">
+ <span itemprop="name">nitroglycerine</span>
+ </span>,
+ Future episodes of stable angina can sometimes be prevented by
+ <span itemprop="secondaryPrevention" itemscope itemtype="http://schema.org/LifestyleModification">
+ <span itemprop="name">stopping smoking</span>
+ </span>,
+ <span itemprop="secondaryPrevention" itemscope itemtype="http://schema.org/LifestyleModification">
+ <span itemprop="name">weight management</span>
+ </span>, and
+ <span itemprop="secondaryPrevention" itemscope itemtype="http://schema.org/LifestyleModification">
+ <span itemprop="name">increased physical activity</span>
+ </span>.
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_30.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,62 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_30.html> md:item (
+ [ a schema:MedicalCondition;
+ schema:alternateName "angina pectoris";
+ schema:associatedAnatomy [ a schema:AnatomicalStructure;
+ schema:name "heart"];
+ schema:cause [ a schema:MedicalCause;
+ schema:name "atherosclerosis"],
+ [ a schema:MedicalCause;
+ schema:name "spasms of the epicardial artery"];
+ schema:code [ a schema:MedicalCode;
+ schema:code "413";
+ schema:codingSystem "ICD-9"];
+ schema:differentialDiagnosis [ a schema:DDxElement;
+ schema:diagnosis [ a schema:MedicalCondition;
+ schema:name "heart attack"];
+ schema:distinguishingSign [ a schema:MedicalSymptom;
+ schema:name "chest pain lasting at least 10 minutes at rest"],
+ [ a schema:MedicalSymptom;
+ schema:name """repeated episodes of chest pain at rest
+ lasting 5 or more minutes
+ """],
+ [ a schema:MedicalSymptom;
+ schema:name """an accelerating pattern of
+ chest discomfort (episodes that are more frequent, severe,
+ longer in duration, and precipitated by minimal exertion)
+ """]];
+ schema:name "Stable angina";
+ schema:possibleTreatment [ a schema:Drug;
+ schema:name "aspirin"],
+ [ a schema:DrugClass;
+ schema:name "beta blockers"],
+ [ a schema:DrugClass;
+ schema:name "ACE inhibitors"],
+ [ a schema:Drug;
+ schema:name "nitroglycerine"];
+ schema:riskFactor [ a schema:MedicalRiskFactor;
+ schema:name "Age"],
+ [ a schema:MedicalRiskFactor;
+ schema:name "Gender"],
+ [ a schema:MedicalRiskFactor;
+ schema:name "Systolic blood pressure"],
+ [ a schema:MedicalRiskFactor;
+ schema:name "Smoking"],
+ [ a schema:MedicalRiskFactor;
+ schema:name "Total cholesterol and/or cholesterol:HDL ratio"],
+ [ a schema:MedicalRiskFactor;
+ schema:name "Coronary artery disease"];
+ schema:secondaryPrevention [ a schema:LifestyleModification;
+ schema:name "stopping smoking"],
+ [ a schema:LifestyleModification;
+ schema:name "weight management"],
+ [ a schema:LifestyleModification;
+ schema:name "increased physical activity"];
+ schema:signOrSymptom [ a schema:MedicalSymptom;
+ schema:name "chest discomfort"],
+ [ a schema:MedicalSymptom;
+ schema:name """feeling of tightness, heaviness,
+ or pain in the chest"""]]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_4.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 4 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Place">
+ <h1>What is the latitude and longitude of the <span itemprop="name">Empire State Building</span>?</h1>
+ Answer:
+ <div itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates">
+ Latitude: 40 deg 44 min 54.36 sec N
+ Longitude: 73 deg 59 min 8.5 dec W
+ <meta itemprop="latitude" content="40.75" />
+ <meta itemprop="longitude" content="73.98" />
+ </div>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_4.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,10 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_4.html> md:item (
+ [ a schema:Place;
+ schema:geo [ a schema:GeoCoordinates;
+ schema:latitude "40.75";
+ schema:longitude "73.98"];
+ schema:name "Empire State Building"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_5.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 5 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/AudioObject">
+ <span itemprop="name"><b>12oclock_girona.mp3</b></span>
+
+<script type="text/javascript">
+ var fo = new FlashObject("http://google.com/flash/preview-player.swf",
+ "flashPlayer_719", "358", "16", "6", "#FFFFFF");fo.addVariable("url","http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3");fo.addVariable("autostart", "0");fo.write("flashcontent_719");
+</script>
+
+<meta itemprop="encodingFormat" content="mp3" />
+ <meta itemprop="contentURL" content="http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3" />
+
+<span class="description">
+ <meta itemprop="duration" content="T0M15S" />
+ <span itemprop="description">Recorded on a terrace of Girona a sunday morning</span>
+</span>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_5.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,11 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_5.html> md:item (
+ [ a schema:AudioObject;
+ schema:contentURL "http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3";
+ schema:description "Recorded on a terrace of Girona a sunday morning";
+ schema:duration "T0M15S";
+ schema:encodingFormat "mp3";
+ schema:name "12oclock_girona.mp3"]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_6.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 6 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Organization">
+ <span itemprop="name">Google.org (GOOG)</span>
+
+Contact Details:
+ <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ Main address:
+ <span itemprop="streetAddress">38 avenue de l'Opera</span>
+ <span itemprop="postalCode">F-75002</span>
+ <span itemprop="addressLocality">Paris, France</span>
+ ,
+ </div>
+ Tel:<span itemprop="telephone">( 33 1) 42 68 53 00 </span>,
+ Fax:<span itemprop="faxNumber">( 33 1) 42 68 53 01 </span>,
+ E-mail: <span itemprop="email">secretariat(at)google.org</span>
+
+Members:
+- National Scientific Members in 100 countries and territories: Country1, Country2, ...
+- Scientific Union Members, 30 organizations listed in this Yearbook:
+ <span itemprop="member" itemscope itemtype="http://schema.org/Organization">
+ Member1
+ </span>,
+ <span itemprop="member" itemscope itemtype="http://schema.org/Organization">
+ Member2
+ </span>,
+
+History:
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_6.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,16 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_6.html> md:item (
+ [ a schema:Organization;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Paris, France";
+ schema:postalCode "F-75002";
+ schema:streetAddress "38 avenue de l'Opera"];
+ schema:email "secretariat(at)google.org";
+ schema:faxNumber "( 33 1) 42 68 53 01 ";
+ schema:member [ a schema:Organization],
+ [ a schema:Organization];
+ schema:name "Google.org (GOOG)";
+ schema:telephone "( 33 1) 42 68 53 00 "]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_7.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 7 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/NGO">
+ <span itemprop="name">Google.org (GOOG)</span>
+
+Contact Details:
+ <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ Main address:
+ <span itemprop="streetAddress">38 avenue de l'Opera</span>
+ <span itemprop="postalCode">F-75002</span>
+ <span itemprop="addressLocality">Paris, France</span>
+ ,
+ </div>
+ Tel:<span itemprop="telephone">( 33 1) 42 68 53 00 </span>,
+ Fax:<span itemprop="faxNumber">( 33 1) 42 68 53 01 </span>,
+ E-mail: <span itemprop="email">secretariat(at)google.org</span>
+
+Members:
+- National Scientific Members in 100 countries and territories: Country1, Country2, ...
+- Scientific Union Members, 30 organizations listed in this Yearbook:
+ <span itemprop="member" itemscope itemtype="http://schema.org/Organization">
+ Member1
+ </span>,
+ <span itemprop="member" itemscope itemtype="http://schema.org/Organization">
+ Member2
+ </span>,
+
+History:
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_7.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,16 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_7.html> md:item (
+ [ a schema:NGO;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Paris, France";
+ schema:postalCode "F-75002";
+ schema:streetAddress "38 avenue de l'Opera"];
+ schema:email "secretariat(at)google.org";
+ schema:faxNumber "( 33 1) 42 68 53 01 ";
+ schema:member [ a schema:Organization],
+ [ a schema:Organization];
+ schema:name "Google.org (GOOG)";
+ schema:telephone "( 33 1) 42 68 53 00 "]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_8.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 8 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Event">
+ <a itemprop="url" href="nba-miami-philidelphia-game3.html">
+ NBA Eastern Conference First Round Playoff Tickets:
+ <span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span>
+ </a>
+
+ <meta itemprop="startDate" content="2016-04-21T20:00">
+ Thu, 04/21/16
+ 8:00 p.m.
+
+ <div itemprop="location" itemscope itemtype="http://schema.org/Place">
+ <a itemprop="url" href="wells-fargo-center.html">
+ Wells Fargo Center
+ </a>
+ <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="addressLocality">Philadelphia</span>,
+ <span itemprop="addressRegion">PA</span>
+ </div>
+ </div>
+
+ <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
+ Priced from: <span itemprop="lowPrice">$35</span>
+ <span itemprop="offerCount">1938</span> tickets left
+ </div>
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_8.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,17 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_8.html> md:item (
+ [ a schema:Event;
+ schema:location [ a schema:Place;
+ schema:address [ a schema:PostalAddress;
+ schema:addressLocality "Philadelphia";
+ schema:addressRegion "PA"];
+ schema:url <http://www.w3.org/TR/microdata-rdf/tests/wells-fargo-center.html>];
+ schema:name " Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) ";
+ schema:offers [ a schema:AggregateOffer;
+ schema:lowPrice "$35";
+ schema:offerCount "1938"];
+ schema:startDate "2016-04-21T20:00";
+ schema:url <http://www.w3.org/TR/microdata-rdf/tests/nba-miami-philidelphia-game3.html>]) .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_9.html Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Web Schemas TF: Schema.org tests: test 9 (format md)</title>
+</head>
+<body>
+
+<div itemscope itemtype="http://schema.org/Product">
+ <span itemprop="name">Kenmore White 17" Microwave</span>
+ <img src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' />
+ <div itemprop="aggregateRating"
+ itemscope itemtype="http://schema.org/AggregateRating">
+ Rated <span itemprop="ratingValue">3.5</span>/5
+ based on <span itemprop="reviewCount">11</span> customer reviews
+ </div>
+
+ <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
+ <span itemprop="price">$55.00</span>
+ <link itemprop="availability" href="http://schema.org/InStock" />In stock
+ </div>
+
+ Product description:
+ <span itemprop="description">0.7 cubic feet countertop microwave.
+ Has six preset cooking categories and convenience features like
+ Add-A-Minute and Child Lock.</span>
+
+ Customer reviews:
+
+ <div itemprop="review" itemscope itemtype="http://schema.org/Review">
+ <span itemprop="name">Not a happy camper</span> -
+ by <span itemprop="author">Ellie</span>,
+ <meta itemprop="datePublished" content="2011-04-01">April 1, 2011
+ <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
+ <meta itemprop="worstRating" content = "1">
+ <span itemprop="ratingValue">1</span>/
+ <span itemprop="bestRating">5</span>stars
+ </div>
+ <span itemprop="description">The lamp burned out and now I have to replace
+ it. </span>
+ </div>
+
+ <div itemprop="review" itemscope itemtype="http://schema.org/Review">
+ <span itemprop="name">Value purchase</span> -
+ by <span itemprop="author">Lucas</span>,
+ <meta itemprop="datePublished" content="2011-03-25">March 25, 2011
+ <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
+ <meta itemprop="worstRating" content = "1"/>
+ <span itemprop="ratingValue">4</span>/
+ <span itemprop="bestRating">5</span>stars
+ </div>
+ <span itemprop="description">Great microwave for the price. It is small and
+ fits in my apartment.</span>
+ </div>
+ ...
+</div>
+
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/microdata-rdf/tests/sdo_eg_md_9.ttl Sun Sep 02 22:33:15 2012 -0600
@@ -0,0 +1,36 @@
+@prefix md: <http://www.w3.org/ns/md#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix schema: <http://schema.org/> .
+
+<http://www.w3.org/TR/microdata-rdf/tests/sdo_eg_md_9.html> md:item (
+ [ a schema:Product;
+ schema:aggregateRating [ a schema:AggregateRating;
+ schema:ratingValue "3.5";
+ schema:reviewCount "11"];
+ schema:description """0.7 cubic feet countertop microwave.
+ Has six preset cooking categories and convenience features like
+ Add-A-Minute and Child Lock.""";
+ schema:name "Kenmore White 17\" Microwave";
+ schema:offers [ a schema:Offer;
+ schema:availability schema:InStock;
+ schema:price "$55.00"];
+ schema:review [ a schema:Review;
+ schema:author "Ellie";
+ schema:datePublished "2011-04-01";
+ schema:description """The lamp burned out and now I have to replace
+ it. """;
+ schema:name "Not a happy camper";
+ schema:reviewRating [ a schema:Rating;
+ schema:bestRating "5";
+ schema:ratingValue "1";
+ schema:worstRating "1"]],
+ [ a schema:Review;
+ schema:author "Lucas";
+ schema:datePublished "2011-03-25";
+ schema:description """Great microwave for the price. It is small and
+ fits in my apartment.""";
+ schema:name "Value purchase";
+ schema:reviewRating [ a schema:Rating;
+ schema:bestRating "5";
+ schema:ratingValue "4";
+ schema:worstRating "1"]]]) .