Minor changes to basic spec.
authorGregg Kellogg <gregg@kellogg-assoc.com>
Sat, 02 Jul 2011 12:23:02 -0700
changeset 41 3921b9000bdd
parent 40 cdda18ae154d
child 42 2ff4da2d5a5a
Minor changes to basic spec.
spec/latest/basic/index.html
--- a/spec/latest/basic/index.html	Sat Jun 25 12:22:48 2011 -0700
+++ b/spec/latest/basic/index.html	Sat Jul 02 12:23:02 2011 -0700
@@ -290,7 +290,7 @@
 <p>
 This document outlines <strong>JSON-LD Basic</strong>, which is a subset
 of <strong>JSON-LD Advanced</strong>. JSON-LD Basic allows developers that do
-not understand or care about more formal ways of modelling data, such as RDF,
+not require about more formal ways of modeling data, such as RDF,
 to still create simple Linked Data systems for the Web.
 </p>
 
@@ -526,6 +526,7 @@
     "Person": "http://xmlns.com/foaf/0.1/Person",
     "name": "http://xmlns.com/foaf/0.1/name",
     "homepage": "http://xmlns.com/foaf/0.1/homepage",
+    "****personality****": "****http://example.org/myvocab#personality****",
     "@coerce": 
     {
       "IRI": ["@type", "homepage"]
@@ -620,11 +621,13 @@
 
 <p>
 The subject identifies the item that is being described using an IRI. By using
-an IRI for identification, the developer ensures that the object can be 
-referred to by other systems in a way that is universal to the Web. JSON objects
-identified using IRIs should ensure that the IRI is dereferenceable in some
-way so that machines can find out more about the resource by dereferencing the
-link.
+an IRI for identification, the developer ensures that the object can be
+referred to by other systems in a way that is universal to the Web. IRIs are always
+evaluated relative to the URI of the document. JSON
+objects identified using IRIs SHOULD ensure that the IRI is dereferenceable in some way so that
+machines can find out more about the resource by dereferencing the link. This
+might be represented as another JSON-LD document containing property
+definitions for that IRI as a <code>@subject</code>.
 </p>
 
 <p>The following example demonstrates the identification of a JSON Linked Data
@@ -664,6 +667,11 @@
 </pre>
 
 <p>
+The value(s) of <code>@type</code> may be terms defined in a <code>@context</code>,
+otherwise they are evaluated relative to the URI of the document.
+</p>
+
+<p>
 A JSON-LD object may have more than one type:
 </p>