Skip to content

Commit 11c9583

Browse files
committed
Merge branch 'linked-data-graph' into update-references
# Conflicts: # index.html
2 parents 3acdd62 + 437f0f4 commit 11c9583

File tree

1 file changed

+70
-2
lines changed

1 file changed

+70
-2
lines changed

index.html

Lines changed: 70 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4948,8 +4948,20 @@ <h1>Data Model</h1>
49484948

49494949
<figure id="fig-linked-data-graph" style="text-align:center">
49504950
<!-- Source for this file is at https://docs.google.com/drawings/d/1_bRm1d9hTTqAqv5q8KEBzI47HxAUrbceA0EE5APh8hA/edit?usp=sharing -->
4951-
<img src="linked-data-graph.svg" style="width: 75%" alt="An illustration of the data model" longdesc="linked-data-graph.html#imageDescription" />
4952-
<figcaption>An illustration of the data model. (see the diagram in <a href="linked-data-graph.svg">SVG</a> or <a href="linked-data-graph.png">PNG</a> formats)</figcaption>
4951+
<object data="linked-data-graph.svg" style="width: 75%" type="image/svg+xml" aria-describedby="fig-linked-data-graph-alt">
4952+
<p id="fig-linked-data-graph-alt">The image depicts a linked data dataset with a default graph
4953+
and two named graphs.</p>
4954+
</object>
4955+
<figcaption>An illustration of a linked data dataset.<br/>
4956+
A <a href="#fig-linked-data-graph-descr">description of the linked data dataset
4957+
diagram</a> is available in the Appendix. Image available in
4958+
<a href="linked-data-graph.svg" title="SVG image of a linked data dataset">
4959+
<abbr title="Scalable Vector Graphics">SVG</abbr>
4960+
</a> and
4961+
<a title="PNG image of a linked data dataset" href="linked-data-graph.png">
4962+
<abbr title="Portable Network Graphics">PNG</abbr>
4963+
</a>
4964+
formats.</figcaption>
49534965
</figure>
49544966
</section>
49554967

@@ -5668,6 +5680,62 @@ <h3>Serializing/Deserializing RDF</h3>
56685680
</section>
56695681
</section>
56705682

5683+
<section class="appendix informative"><h2>Image Desciptions</h2>
5684+
<section id="fig-linked-data-graph-descr"><h3>Linked Data Dataset</h3>
5685+
<h1>Description of the <a href="#fig-linked-data-graph">Linked Data Dataset figure</a> in <a href="#data-model" class="sectionRef"></a></h1>
5686+
<p>The image consists of three dashed boxes, each describing a different
5687+
linked data graph. Each box consists of shapes linked with arrows describing
5688+
the linked data relationships.</p>
5689+
<p>The first box is titled "default graph: &lt;no name&gt;" describes two
5690+
resources: <code>http://example.com/people/alice</code> and <code>http://example.com/people/bob</code>
5691+
(denoting "Alice" and "Bob" respectively), which are
5692+
connected by an arrow labeled <code>http://schema.org/knows</code> which describes
5693+
the knows relationship between the two resources. Additionally, the "Alice" resource is related
5694+
to three different literals:</p>
5695+
<dl>
5696+
<dt>Alice</dt>
5697+
<dd>an RDF literal with no datatype or language.</dd>
5698+
<dt>weiblich | de</dt>
5699+
<dd>an language-tagged string with the value "weiblich" and language-tag "de".</dd>
5700+
<dt>female | en</dt>
5701+
<dd>an language-tagged string with the value "female" and language-tag "en".</dd>
5702+
</dl>
5703+
<p>This describes the RDF graph which can be represented in Turtle as follows:</p>
5704+
<pre>
5705+
@prefix schema: "http://schema.org" .
5706+
5707+
&lt;http://example.com/people/alice&gt; schema:knows &lt;http://example.com/people/bob&gt;;
5708+
schema:name "Alice";
5709+
schema:gender "weiblich"@de, "female"@en .
5710+
</pre>
5711+
<p>The second and third boxes describe two named graphs, with the graph names
5712+
&lt;http://example.com/graphs/1&gt; and &lt;http://example.com/graphs/1&gt;, respectively.</p>
5713+
<p>The second box consists of two resources related by an unnamed IRI with the second
5714+
resource having an unnamed literal property.</p>
5715+
<p>The third box consists of three resources related to each other by unnamed IRIs with the third
5716+
resource having an unnamed literal property.</p>
5717+
<p>The entire dataset can be represented in TriG as follows:</p>
5718+
<pre>
5719+
@prefix schema: "http://schema.org" .
5720+
5721+
&lt;http://example.com/people/alice&gt; schema:knows &lt;http://example.com/people/bob&gt;;
5722+
schema:name "Alice";
5723+
schema:gender "weiblich"@de, "female"@en .
5724+
5725+
&lt;http://example.com/graphs/1&gt; {
5726+
[ &lt;unnamed1&gt; [&lt;unnamed2&gt; ""]]
5727+
}
5728+
5729+
&lt;http://example.com/graphs/2&gt; {
5730+
_:node1 &lt;unnamed1&gt; [
5731+
&lt;unnamed1&gt; [
5732+
&lt;unnamed1&gt; _:node1
5733+
&lt;unnamed2&gt; ""]] .
5734+
}
5735+
</pre>
5736+
</section>
5737+
</section>
5738+
56715739
<section class="appendix informative">
56725740
<h2>Changes since 1.0 Recommendation of 16 January 2014</h2>
56735741
<ul>

0 commit comments

Comments
 (0)