Updated the example in the README.rst file.
authorManu Sporny <msporny@digitalbazaar.com>
Tue, 12 Jul 2011 23:24:30 -0400
changeset 64 b03c4e4a4b0f
parent 63 37dacb0921d1
child 65 4e2d52fd450b
child 74 f17d652d1d92
Updated the example in the README.rst file.
README.rst
--- a/README.rst	Tue Jul 12 23:18:21 2011 -0400
+++ b/README.rst	Tue Jul 12 23:24:30 2011 -0400
@@ -1,7 +1,6 @@
 Introduction
 ------------
 
-
 JSON-LD (JavaScript Object Notation for Linked Data) is a lightweight Linked
 Data format. It is easy for humans to read and write. It is easy for machines
 to parse and generate. It is based on the already successful JSON format and
@@ -17,12 +16,13 @@
 
 A simple example of a JSON object with added semantics::
 
-  {
-    "#": {"foaf": "http://xmlns.com/foaf/0.1/"},
-    "@": "<http://example.org/people#john>",
-    "a": "foaf:Person",
-    "foaf:name" : "John Lennon"
-  }
+{ 
+  "@context": "http://purl.org/jsonld/Person"
+  "@subject": "http://dbpedia.org/resource/John_Lennon",
+  "name": "John Lennon",
+  "birthday": "10-09",
+  "member": "http://dbpedia.org/resource/The_Beatles"
+}
 
 The example above describes a person whose name is John Lennon. The difference
 between regular JSON and JSON-LD is that the JSON-LD object above uniquely