@@ -4948,8 +4948,20 @@ <h1>Data Model</h1>
4948
4948
4949
4949
< figure id ="fig-linked-data-graph " style ="text-align:center ">
4950
4950
<!-- 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 >
4953
4965
</ figure >
4954
4966
</ section >
4955
4967
@@ -5668,6 +5680,62 @@ <h3>Serializing/Deserializing RDF</h3>
5668
5680
</ section >
5669
5681
</ section >
5670
5682
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: <no name>" 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
+ <http://example.com/people/alice> schema:knows <http://example.com/people/bob>;
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
+ <http://example.com/graphs/1> and <http://example.com/graphs/1>, 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
+ <http://example.com/people/alice> schema:knows <http://example.com/people/bob>;
5722
+ schema:name "Alice";
5723
+ schema:gender "weiblich"@de, "female"@en .
5724
+
5725
+ <http://example.com/graphs/1> {
5726
+ [ <unnamed1> [<unnamed2> ""]]
5727
+ }
5728
+
5729
+ <http://example.com/graphs/2> {
5730
+ _:node1 <unnamed1> [
5731
+ <unnamed1> [
5732
+ <unnamed1> _:node1
5733
+ <unnamed2> ""]] .
5734
+ }
5735
+ </ pre >
5736
+ </ section >
5737
+ </ section >
5738
+
5671
5739
< section class ="appendix informative ">
5672
5740
< h2 > Changes since 1.0 Recommendation of 16 January 2014</ h2 >
5673
5741
< ul >
0 commit comments