Remove schema.org stuff from test registry and assert the main registry for schema.org tests
authorGregg Kellogg <gregg@kellogg-assoc.com>
Tue, 11 Sep 2012 16:49:09 -0700
changeset 131 e660ef819c53
parent 130 6bc9cda42cf5
child 132 85f8875f154f
Remove schema.org stuff from test registry and assert the main registry for schema.org tests
microdata-rdf/tests/0010.ttl
microdata-rdf/tests/add-test.rb
microdata-rdf/tests/index.html
microdata-rdf/tests/manifest-frame.jsonld
microdata-rdf/tests/manifest.jsonld
microdata-rdf/tests/manifest.ttl
microdata-rdf/tests/test-registry.json
--- a/microdata-rdf/tests/0010.ttl	Tue Sep 11 11:45:35 2012 -0700
+++ b/microdata-rdf/tests/0010.ttl	Tue Sep 11 16:49:09 2012 -0700
@@ -2,4 +2,4 @@
 @prefix md: <http://www.w3.org/ns/md#> .
 @prefix schema: <http://schema.org/> .
 
-<0010.html> md:item ([ a schema:Thing; schema:track (<foo>)]) .
+<0010.html> md:item ([ a schema:Thing; schema:track <foo>]) .
--- a/microdata-rdf/tests/add-test.rb	Tue Sep 11 11:45:35 2012 -0700
+++ b/microdata-rdf/tests/add-test.rb	Tue Sep 11 16:49:09 2012 -0700
@@ -55,6 +55,10 @@
 data ||= "#{num_str}.html"
 query ||= "#{num_str}.ttl"
 
+# Create test files, if they don't exist
+File.open(data) unless File.exist?(data)
+File.open(query) unless File.exist?(query)
+
 # Add test
 output += %(
 <!-- Start Test Description -->
@@ -62,7 +66,7 @@
      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="name">Test #{num_str}</span>:
   <span itemprop="http://www.w3.org/2000/01/rdf-schema#comment"
     >#{comment}</span>
   (
--- a/microdata-rdf/tests/index.html	Tue Sep 11 11:45:35 2012 -0700
+++ b/microdata-rdf/tests/index.html	Tue Sep 11 16:49:09 2012 -0700
@@ -65,23 +65,6 @@
           maxTocLevel: 4,
           //alternateFormats: [ {uri: "diff-20111118.html", label: "diff to previous version"} ],
       };
-
-      function _esc(s) {
-          s = s.replace(/&/g,'&amp;');
-          s = s.replace(/>/g,'&gt;');
-          s = s.replace(/"/g,'&quot;');
-          s = s.replace(/</g,'&lt;');
-          return s;
-      }
-
-      function updateExample(doc, content) {
-        // perform transformations to make it render and prettier
-        content = content.replace(/<!--/, '');
-        content = content.replace(/-->/, '');
-        content = _esc(content);
-        content = content.replace(/\*\*\*\*([^*]*)\*\*\*\*/g, '<span class="diff">$1</span>') ;
-        return content ;
-      }
   </script>
 </head>
 <body>
@@ -109,26 +92,24 @@
     typically a file co-located and numbered along with the test itself.</p>
   <section><h3>Example Test Entry</h3>
     <p>An example test entry parsed from this manifest might have the following form:</p>
-    <pre class="example" data-transform="updateExample">
-<!--
-@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
-@prefix mf:     <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
-@prefix qt:     <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
+    <pre class="example">
+@prefix rdf:    &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt; .
+@prefix rdfs:	&lt;http://www.w3.org/2000/01/rdf-schema#&gt; .
+@prefix mf:     &lt;http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#&gt; .
+@prefix qt:     &lt;http://www.w3.org/2001/sw/DataAccess/tests/test-query#&gt; .
 
 [ rdf:type mf:Manifest ;
-  rdfs:comment "Turtle good syntax test cases (must pass)" ;
+  rdfs:comment &quot;Turtle good syntax test cases (must pass)&quot; ;
   mf:entries (
     [ a mf:ManifestEntry;
-      mf:name "Test 0001";
-      rdfs:comment  "Item with no itemtype and literal itemprop";
-      mf:action [qt:data <0001.html>];
-      mf:registry <test-registry.json>;
-      mf:result <0001.ttl>
+      mf:name &quot;Test 0001&quot;;
+      rdfs:comment  &quot;Item with no itemtype and literal itemprop&quot;;
+      mf:action [qt:data &lt;0001.html&gt;];
+      mf:registry &lt;test-registry.json&gt;;
+      mf:result &lt;0001.ttl&gt;
     ]
   )
 ] .
--->
     </pre>
   </section>
 </section>
@@ -453,6 +434,7 @@
     <a itemprop="data" href="sdo_eg_md_1.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_1.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -473,6 +455,7 @@
     <a itemprop="data" href="sdo_eg_md_2.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_2.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -493,6 +476,7 @@
     <a itemprop="data" href="sdo_eg_md_3.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_3.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -513,6 +497,7 @@
     <a itemprop="data" href="sdo_eg_md_4.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_4.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -533,6 +518,7 @@
     <a itemprop="data" href="sdo_eg_md_5.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_5.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -553,6 +539,7 @@
     <a itemprop="data" href="sdo_eg_md_6.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_6.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -573,6 +560,7 @@
     <a itemprop="data" href="sdo_eg_md_7.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_7.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -593,6 +581,7 @@
     <a itemprop="data" href="sdo_eg_md_8.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_8.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -613,6 +602,7 @@
     <a itemprop="data" href="sdo_eg_md_9.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_9.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -633,6 +623,7 @@
     <a itemprop="data" href="sdo_eg_md_10.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_10.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -653,6 +644,7 @@
     <a itemprop="data" href="sdo_eg_md_11.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_11.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -673,6 +665,7 @@
     <a itemprop="data" href="sdo_eg_md_12.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_12.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -693,6 +686,7 @@
     <a itemprop="data" href="sdo_eg_md_13.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_13.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -713,6 +707,7 @@
     <a itemprop="data" href="sdo_eg_md_14.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_14.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -733,6 +728,7 @@
     <a itemprop="data" href="sdo_eg_md_15.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_15.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -753,6 +749,7 @@
     <a itemprop="data" href="sdo_eg_md_16.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_16.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -773,6 +770,7 @@
     <a itemprop="data" href="sdo_eg_md_17.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_17.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -793,6 +791,7 @@
     <a itemprop="data" href="sdo_eg_md_18.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_18.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -813,6 +812,7 @@
     <a itemprop="data" href="sdo_eg_md_19.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_19.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -833,6 +833,7 @@
     <a itemprop="data" href="sdo_eg_md_20.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_20.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -853,6 +854,7 @@
     <a itemprop="data" href="sdo_eg_md_21.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_21.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -873,6 +875,7 @@
     <a itemprop="data" href="sdo_eg_md_22.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_22.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -893,6 +896,7 @@
     <a itemprop="data" href="sdo_eg_md_23.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_23.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -913,6 +917,7 @@
     <a itemprop="data" href="sdo_eg_md_24.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_24.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -933,6 +938,7 @@
     <a itemprop="data" href="sdo_eg_md_25.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_25.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -953,6 +959,7 @@
     <a itemprop="data" href="sdo_eg_md_26.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_26.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -973,6 +980,7 @@
     <a itemprop="data" href="sdo_eg_md_27.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_27.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -993,6 +1001,7 @@
     <a itemprop="data" href="sdo_eg_md_28.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_28.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -1013,6 +1022,7 @@
     <a itemprop="data" href="sdo_eg_md_29.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_29.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
@@ -1033,6 +1043,7 @@
     <a itemprop="data" href="sdo_eg_md_30.html">input</a> |
     <a itemprop="query" href="sdo_eg_md_30.ttl">query</a>
   </span>
+  <link itemprop="registry" href="http://www.w3.org/ns/md"/>
   <meta itemprop="result" content="true"/>
   )
 </div>
--- a/microdata-rdf/tests/manifest-frame.jsonld	Tue Sep 11 11:45:35 2012 -0700
+++ b/microdata-rdf/tests/manifest-frame.jsonld	Tue Sep 11 16:49:09 2012 -0700
@@ -11,6 +11,7 @@
     "action": "mf:action",
     "data": {"@id": "mq:data", "@type": "@id"},
     "query": {"@id": "mq:query", "@type": "@id"},
+    "registry": {"@id": "mf:registry", "@type": "@id"},
     "result": "mf:result"
   },
   "@type": "mf:Manifest",
--- a/microdata-rdf/tests/manifest.jsonld	Tue Sep 11 11:45:35 2012 -0700
+++ b/microdata-rdf/tests/manifest.jsonld	Tue Sep 11 16:49:09 2012 -0700
@@ -19,598 +19,634 @@
       "@id": "mq:query",
       "@type": "@id"
     },
+    "registry": {
+      "@id": "mf:registry",
+      "@type": "@id"
+    },
     "result": "mf:result"
   },
   "@graph": [
-  {
-    "@id": "_:t67",
-    "@type": "mf:Manifest",
-    "comment": "Positive processor tests",
-    "entries": [
-    {
-      "@id": "_:t68",
-      "@type": "mf:ManifestEntry",
-      "comment": "Item with no itemtype and literal itemprop",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t17",
-      "@type": "mf:ManifestEntry",
-      "comment": "Item with no itemtype and 2 elements with equivalent itemprop",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t69",
-      "@type": "mf:ManifestEntry",
-      "comment": "Item with itemprop having two properties",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t14",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of meta and @content",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t6",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of audio and @src",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t19",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of embed and @src",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t41",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of iframe and @src",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t25",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of img and @src",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t34",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of source and @src",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t44",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of track and @src",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t50",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of video and @src",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t57",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of a and @href",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t70",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of area and @href",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t71",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of link and @href",
-      "action": {
-        "@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",
-      "result": "true"
-    },
-    {
-      "@id": "_:t72",
-      "@type": "mf:ManifestEntry",
-      "comment": "Use of object and @data",
-      "action": {
-        "@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",
-      "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"
-    }]
-  }]
+      "@id": "_:v2",
+      "@type": "mf:Manifest",
+      "comment": "Positive processor tests",
+      "entries": [
+        {
+          "@id": "_:v3",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa9",
+            "@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"
+          },
+          "comment": "Item with no itemtype and literal itemprop",
+          "name": "Test 0001",
+          "result": "true"
+        },
+        {
+          "@id": "_:v4",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab3",
+            "@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"
+          },
+          "comment": "Item with no itemtype and 2 elements with equivalent itemprop",
+          "name": "Test 0002",
+          "result": "true"
+        },
+        {
+          "@id": "_:v5",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab5",
+            "@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"
+          },
+          "comment": "Item with itemprop having two properties",
+          "name": "Test 0003",
+          "result": "true"
+        },
+        {
+          "@id": "_:v6",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab8",
+            "@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"
+          },
+          "comment": "Use of meta and @content",
+          "name": "Test 0004",
+          "result": "true"
+        },
+        {
+          "@id": "_:u0",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:u1",
+            "@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"
+          },
+          "comment": "Use of audio and @src",
+          "name": "Test 0005",
+          "result": "true"
+        },
+        {
+          "@id": "_:t4",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:t5",
+            "@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"
+          },
+          "comment": "Use of embed and @src",
+          "name": "Test 0006",
+          "result": "true"
+        },
+        {
+          "@id": "_:u4",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:u5",
+            "@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"
+          },
+          "comment": "Use of iframe and @src",
+          "name": "Test 0007",
+          "result": "true"
+        },
+        {
+          "@id": "_:v7",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab9",
+            "@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"
+          },
+          "comment": "Use of img and @src",
+          "name": "Test 0008",
+          "result": "true"
+        },
+        {
+          "@id": "_:v8",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:y8",
+            "@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"
+          },
+          "comment": "Use of source and @src",
+          "name": "Test 0009",
+          "result": "true"
+        },
+        {
+          "@id": "_:v9",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z2",
+            "@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"
+          },
+          "comment": "Use of track and @src",
+          "name": "Test 0010",
+          "result": "true"
+        },
+        {
+          "@id": "_:w0",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z6",
+            "@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"
+          },
+          "comment": "Use of video and @src",
+          "name": "Test 0011",
+          "result": "true"
+        },
+        {
+          "@id": "_:w1",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z9",
+            "@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"
+          },
+          "comment": "Use of a and @href",
+          "name": "Test 0012",
+          "result": "true"
+        },
+        {
+          "@id": "_:w2",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa2",
+            "@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"
+          },
+          "comment": "Use of area and @href",
+          "name": "Test 0013",
+          "result": "true"
+        },
+        {
+          "@id": "_:w3",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa5",
+            "@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"
+          },
+          "comment": "Use of link and @href",
+          "name": "Test 0014",
+          "result": "true"
+        },
+        {
+          "@id": "_:w4",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa1",
+            "@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"
+          },
+          "comment": "Use of object and @data",
+          "name": "Test 0015",
+          "result": "true"
+        },
+        {
+          "@id": "_:w5",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z7",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 1 (format md)",
+          "name": "Test 0016",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:w6",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z3",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 2 (format md)",
+          "name": "Test 0017",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:w7",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z0",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 3 (format md)",
+          "name": "Test 0018",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:v0",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:v1",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 4 (format md)",
+          "name": "Test 0019",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:u9",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:u7",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 5 (format md)",
+          "name": "Test 0020",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:u3",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:t6",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 6 (format md)",
+          "name": "Test 0021",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:w8",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:u2",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 7 (format md)",
+          "name": "Test 0022",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:w9",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab7",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 8 (format md)",
+          "name": "Test 0023",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x0",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab4",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 9 (format md)",
+          "name": "Test 0024",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x1",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab1",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 10 (format md)",
+          "name": "Test 0025",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:t1",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:t2",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 11 (format md)",
+          "name": "Test 0026",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x2",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa8",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 12 (format md)",
+          "name": "Test 0027",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x3",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:t0",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 13 (format md)",
+          "name": "Test 0028",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x4",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa3",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 14 (format md)",
+          "name": "Test 0029",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x5",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z8",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 15 (format md)",
+          "name": "Test 0030",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x6",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z4",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 16 (format md)",
+          "name": "Test 0031",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x7",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:y9",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 17 (format md)",
+          "name": "Test 0032",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x8",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ac0",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 18 (format md)",
+          "name": "Test 0033",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:u8",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:u6",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 19 (format md)",
+          "name": "Test 0034",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:t7",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:t3",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 20 (format md)",
+          "name": "Test 0035",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:t8",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:t9",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 21 (format md)",
+          "name": "Test 0036",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:x9",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab6",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 22 (format md)",
+          "name": "Test 0037",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y0",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab2",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 23 (format md)",
+          "name": "Test 0038",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y1",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:ab0",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 24 (format md)",
+          "name": "Test 0039",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y2",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa6",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 25 (format md)",
+          "name": "Test 0040",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y3",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa7",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 26 (format md)",
+          "name": "Test 0041",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y4",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa4",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 27 (format md)",
+          "name": "Test 0042",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y5",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:aa0",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 28 (format md)",
+          "name": "Test 0043",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y6",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z5",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 29 (format md)",
+          "name": "Test 0044",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        },
+        {
+          "@id": "_:y7",
+          "@type": "mf:ManifestEntry",
+          "action": {
+            "@id": "_:z1",
+            "@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"
+          },
+          "comment": "Web Schemas TF: Schema.org tests: test 30 (format md)",
+          "name": "Test 0045",
+          "registry": "http://www.w3.org/ns/md",
+          "result": "true"
+        }
+      ]
+    }
+  ]
 }
\ No newline at end of file
--- a/microdata-rdf/tests/manifest.ttl	Tue Sep 11 11:45:35 2012 -0700
+++ b/microdata-rdf/tests/manifest.ttl	Tue Sep 11 16:49:09 2012 -0700
@@ -100,179 +100,209 @@
            mf:action [ a mq:QueryTest;
              mq:data <sdo_eg_md_1.html>;
              mq:query <sdo_eg_md_1.ttl>];
-           mf:name "Test 16";
+           mf:name "Test 0016";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0017";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0018";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0019";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0020";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0021";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0022";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0023";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0024";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0025";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0026";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0027";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0028";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0029";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0030";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0031";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0032";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0033";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0034";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0035";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0036";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0037";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0038";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0039";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0040";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0041";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0042";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0043";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0044";
+           mf:registry <http://www.w3.org/ns/md>;
            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:name "Test 0045";
+           mf:registry <http://www.w3.org/ns/md>;
            mf:result "true"])]) .
--- a/microdata-rdf/tests/test-registry.json	Tue Sep 11 11:45:35 2012 -0700
+++ b/microdata-rdf/tests/test-registry.json	Tue Sep 11 16:49:09 2012 -0700
@@ -36,38 +36,5 @@
       "list": {"multipleValues": "list"},
       "typed": {"datatype": "http://typed"}
     }
-  },
-  "http://schema.org/": {
-    "propertyURI":    "vocabulary",
-    "multipleValues": "unordered",
-    "properties": {
-      "additionalType": {"subPropertyOf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"},
-      "blogPosts": {"multipleValues": "list"},
-      "blogPosts": {"multipleValues": "list"},
-      "breadcrumb": {"multipleValues": "list"},
-      "byArtist": {"multipleValues": "list"},
-      "creator": {"multipleValues": "list"},
-      "episode": {"multipleValues": "list"},
-      "episodes": {"multipleValues": "list"},
-      "event": {"multipleValues": "list"},
-      "events": {"multipleValues": "list"},
-      "founder": {"multipleValues": "list"},
-      "founders": {"multipleValues": "list"},
-      "itemListElement": {"multipleValues": "list"},
-      "musicGroupMember": {"multipleValues": "list"},
-      "performerIn": {"multipleValues": "list"},
-      "actor": {"multipleValues": "list"},
-      "actors": {"multipleValues": "list"},
-      "performer": {"multipleValues": "list"},
-      "performers": {"multipleValues": "list"},
-      "producer": {"multipleValues": "list"},
-      "recipeInstructions": {"multipleValues": "list"},
-      "season": {"multipleValues": "list"},
-      "seasons": {"multipleValues": "list"},
-      "subEvent": {"multipleValues": "list"},
-      "subEvents": {"multipleValues": "list"},
-      "track": {"multipleValues": "list"},
-      "tracks": {"multipleValues": "list"}
-    }
   }
-}
+  }