Skip to content

Editorial issues #130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Feb 15, 2019
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3fcd5d4
Add _scoped context_ and _embedded context_ definitions to terms, and…
gkellogg Feb 13, 2019
1f0e2e1
Clarify definition of _list objects_ and _set objects_, and that they…
gkellogg Feb 13, 2019
2cabc02
Remove redundant paragraph from conformance section.
gkellogg Feb 13, 2019
c9e4cc6
Clean up example comments so they don't wrap.
gkellogg Feb 13, 2019
210cbc6
Fix `@type` values not marked as code.
gkellogg Feb 13, 2019
fcf9261
Add a note on URLs and URNs in 3.2.
gkellogg Feb 13, 2019
38772eb
Move note on type coercion as distinct from specifying the type of a …
gkellogg Feb 13, 2019
ba3af21
Further describe the use of an outer array in 4.1, and introduce the …
gkellogg Feb 13, 2019
6e2ceb2
Fix example 19.
gkellogg Feb 13, 2019
07bda65
Add example showing how scoped contexts are processed along with embe…
gkellogg Feb 14, 2019
ac06138
Improve the description for the "Term expansion for values, not ident…
gkellogg Feb 14, 2019
b714efb
Better describe that `@container: @list` is recursively applied to ar…
gkellogg Feb 14, 2019
fb6b43e
Clarify that `obj.post.de` only applies to JavaScript access, or simi…
gkellogg Feb 14, 2019
5c48aec
misc typos
pchampin Feb 14, 2019
ca24cd0
Remove at-risk for issue #23.
gkellogg Feb 14, 2019
d043256
Clean up data model description of what a node is.
gkellogg Feb 14, 2019
d09d972
Section no Appendix.
gkellogg Feb 14, 2019
f578305
Cleanup open issues.
gkellogg Feb 14, 2019
01fc7e4
Address @iherman's comment on term selection for prefixes.
gkellogg Feb 15, 2019
ebfda77
Move description of using `@set` with `@type` to from Aliasing Keywor…
gkellogg Feb 15, 2019
2dd88d0
Address @iherman comment in PR.
gkellogg Feb 15, 2019
3e0b7b0
Implement @iherman's suggested change on retrieving contexts.
gkellogg Feb 15, 2019
5f0445f
Address @iherman's concern about nesting.
gkellogg Feb 15, 2019
cbd8024
Update references from HTML52 to just HTML for the living spec.
gkellogg Feb 15, 2019
b53e751
Use _MUST NOT_ instead of _SHOULD NOT_ for prefixes coming from IANA.
gkellogg Feb 15, 2019
6cb2b72
Distinguish between a graph object, and a node object that can also d…
gkellogg Feb 15, 2019
7031cc2
Clarify that index maps for named graphs do not name the graphs, but …
gkellogg Feb 15, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -980,14 +980,22 @@ <h2>IRIs</h2>
In JSON-LD, with exceptions are as described below, all <a>relative IRIs</a>
are resolved relative to the <a>base IRI</a>.</p>

<p class="note">As noted in <a href="#how-to-read-this-document" class="sectionRef"></a>,
IRIs can often be confused with URLs (<a data-cite="ld-glossary#uniform-resource-locator">Uniform Resource Locators</a>),
the primary distinction is that a URL <em>locates</em> a resource on the web,
an IRI <em>identifies</em> a resource. While it is a good practice for resource identifiers
to be dereferencable, sometimes this is not practical. In particular, note the
[[URN]] scheme for Uniform Resource Names, such as <a data-cite="rfc4122">UUID</a>.
An example UUID is <code>urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6</code>.</p>

<p class="note"><a>Properties</a>, values of <code>@type</code>,
and values of <a>properties</a> with a <a>term definition</a>
that defines them as being relative to the <a>vocabulary mapping</a>,
may have the form of a <a>relative IRI</a>, but are resolved using the
<a>vocabulary mapping</a>, and not the <a>base IRI</a>.</p>

<p>A <a>string</a> is interpreted as an <a>IRI</a> when it is the
value of an <a>dictionary member</a> with the key<code>@id</code>:</p>
value of an <a>dictionary member</a> with the key <code>@id</code>:</p>

<pre class="example nohighlight" data-transform="updateExample"
title="Values of @id are interpreted as IRI">
Expand Down