Replace some lingering uses of @iri and @subject with @id.
authorGregg Kellogg <gregg@kellogg-assoc.com>
Tue, 24 Jan 2012 12:55:50 -0800
changeset 362 67d581a6aeca
parent 361 d20e6e5f136c
child 363 092a07213bdf
Replace some lingering uses of @iri and @subject with @id.
update "place" context to current syntax.
primer/latest/index.html
--- a/primer/latest/index.html	Tue Jan 24 10:24:17 2012 -0800
+++ b/primer/latest/index.html	Tue Jan 24 12:55:50 2012 -0800
@@ -382,7 +382,7 @@
 
 <pre id="p1" class="example prettyprint lang-jsonld" data-transform="updateLiveExample(div)">
 {
-    "@subject": "http://store.example.com/",
+    "@id": "http://store.example.com/",
     "@type": "Store",
     "name": "Links Bike Shop",
     "description": "The most \"linked\" bike store on earth!"
@@ -394,7 +394,7 @@
 
 <pre class="example prettyprint lang-jsonld" data-transform="updateLiveExample(div)">
 {
-    "@subject": "http://store.example.com/products/links-swift-chain",
+    "@id": "http://store.example.com/products/links-swift-chain",
     "@type": "Product",
     "name": "Links Swift Chain",
     "description": "A fine chain with many links.",
@@ -409,7 +409,7 @@
 
 <pre class="example prettyprint lang-jsonld" data-transform="updateLiveExample(div)">
 {
-    "@subject": "http://store.example.com/products/links-speedy-lube",
+    "@id": "http://store.example.com/products/links-speedy-lube",
     "@type": "Product",
     "name": "Links Speedy Lube",
     "description": "Lubricant for your chain links.",
@@ -427,13 +427,13 @@
 
 <pre class="example prettyprint lang-jsonld" data-transform="updateLiveExample(div)">
 {
-    "@subject": "http://store.example.com/",
+    "@id": "http://store.example.com/",
     "@type": "Store",
     "name": "Links Bike Shop",
     "description": "The most \"linked\" bike store on earth!",
     "product": [
         {
-            "@subject": "p:links-swift-chain",
+            "@id": "p:links-swift-chain",
             "@type": "Product",
             "name": "Links Swift Chain",
             "description": "A fine chain with many links.",
@@ -442,7 +442,7 @@
             "stock": 10
         },
         {
-            "@subject": "p:links-speedy-lube",
+            "@id": "p:links-speedy-lube",
             "@type": "Product",
             "name": "Links Speedy Lube",
             "description": "Lubricant for your chain links.",