--- a/rdf-primer/index.html Wed Nov 06 17:46:00 2013 +0100
+++ b/rdf-primer/index.html Wed Nov 06 17:47:00 2013 +0100
@@ -327,7 +327,7 @@
<section id="subsection-graphs">
- <h3>Graphs</h3>
+ <h3>Graph</h3>
<p>RDF provides a mechanism to group RDF statements in <i>graphs</i> and associate them
with an IRI. For example the statements in the example above could be grouped in two graphs. A first
@@ -389,8 +389,8 @@
<http://example.org/bob#me> <http://schema.org/birthDate> "1990-07-04"^^<http://www.w3.org/2001/XMLSchema#date>.
<http://example.org/bob#me> <http://xmlns.com/foaf/0.1/topic_interest> <http://www.wikidata.org/entity/Q12418>.
<http://viaf.org/viaf/24604287/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
-<http://viaf.org/viaf/24604287/> <http://xmlns.com/foaf/0.1/made> <http://www.wikidata.org/entity/Q12418>.
-<http://viaf.org/viaf/24604287/> <http://xmlns.com/foaf/0.1/name> "Leonardo da Vinci" .
+<http://viaf.org/viaf/24604287/> <http://xmlns.com/foaf/0.1/name> "Leonardo da Vinci".
+<http://www.wikidata.org/entity/Q12418> <http://purl.org/dc/terms/creator> <http://viaf.org/viaf/24604287/>.
<http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619> <http://purl.org/dc/terms/subject> <http://www.wikidata.org/entity/Q12418>.
</pre>
@@ -424,8 +424,10 @@
<http://viaf.org/viaf/24604287/>
a foaf:Person ;
- foaf:name "Leonardo da Vinci" ;
- foaf:made wd:Q12418 .
+ foaf:name "Leonardo da Vinci" .
+
+wd:Q12418
+ dcterms:creator <http://viaf.org/viaf/24604287/> .
<http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619>
dcterms:subject wd:Q12418 .
@@ -469,7 +471,7 @@
"subject_of": {
"@id": "http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619"
},
- "foaf:maker": {
+ "dcterms:creator": {
"@id": "http://viaf.org/viaf/24604287/",
"@type": "foaf:Person",
"foaf:name": "Leonardo da Vinci"
@@ -504,7 +506,7 @@
Bob is interested in <a rel="foaf:topic_interest" resource="wd:Q12418">the Mona Lisa</a>.
</p>
<div about="wd:Q12418">
- The Mona Lisa was painted by <a rev="foaf:maker" typeof="foaf:Person" href="http://viaf.org/viaf/24604287/"><span property="foaf:name">Leonardo da Vinci</span></a>
+ The Mona Lisa was painted by <a rel="dcterms:creator" typeof="foaf:Person" href="http://viaf.org/viaf/24604287/"><span property="foaf:name">Leonardo da Vinci</span></a>
and is the subject of this <a rev="dcterms:subject" href="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">video document</a>.
</div>
</div>
@@ -536,9 +538,11 @@
<foaf:topic_interest rdf:resource="http://www.wikidata.org/entity/Q12418"/>
</foaf:Person>
<foaf:Person rdf:about="http://viaf.org/viaf/24604287/">
- <foaf:made rdf:resource="http://www.wikidata.org/entity/Q12418"/>
<foaf:name>Leonardo da Vinci</foaf:name>
</foaf:Person>
+ <rdf:Description rdf:about="http://www.wikidata.org/entity/Q12418">
+ <dcterms:creator rdf:resource="http://viaf.org/viaf/24604287/"/>
+ </rdf:Description>
<rdf:Description rdf:about="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">
<dcterms:subject rdf:resource="http://www.wikidata.org/entity/Q12418"/>
</rdf:Description>
@@ -572,7 +576,7 @@
<http://example.org/bob#me> <http://xmlns.com/foaf/0.1/topic_interest> <http://www.wikidata.org/entity/Q12418> <http://example.org/bob> .
<http://viaf.org/viaf/24604287/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <https://www.wikidata.org/wiki/Special:EntityData/Q12418> .
<http://viaf.org/viaf/24604287/> <http://xmlns.com/foaf/0.1/name> "Leonardo da Vinci" <https://www.wikidata.org/wiki/Special:EntityData/Q12418> .
-<http://viaf.org/viaf/24604287/> <http://xmlns.com/foaf/0.1/made> <http://www.wikidata.org/entity/Q12418> <https://www.wikidata.org/wiki/Special:EntityData/Q12418> .
+<http://www.wikidata.org/entity/Q12418> <http://purl.org/dc/terms/creator> <http://viaf.org/viaf/24604287/> <https://www.wikidata.org/wiki/Special:EntityData/Q12418> .
<http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619> <http://purl.org/dc/terms/subject> <http://www.wikidata.org/entity/Q12418> <https://www.wikidata.org/wiki/Special:EntityData/Q12418> .
</pre>
@@ -607,8 +611,10 @@
{
<http://viaf.org/viaf/24604287/>
a foaf:Person ;
- foaf:name "Leonardo da Vinci" ;
- foaf:made wd:Q12418 .
+ foaf:name "Leonardo da Vinci" .
+
+ wd:Q12418
+ dcterms:creator <http://viaf.org/viaf/24604287/> .
<http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619>
dcterms:subject wd:Q12418 .
@@ -631,7 +637,7 @@
"foaf": "http://xmlns.com/foaf/0.1/",
"schema": "http://schema.org/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
- "dc": "http://purl.org/dc/terms/"
+ "dcterms": "http://purl.org/dc/terms/"
},
"@graph": [
{
@@ -658,17 +664,14 @@
"@graph": [
{
"@id": "http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619",
- "dc:subject": {
- "@id": "http://www.wikidata.org/entity/Q12418"
+ "dcterms:subject": {
+ "@id": "http://www.wikidata.org/entity/Q12418",
+ "dcterms:creator": {
+ "@id": "http://viaf.org/viaf/24604287/",
+ "@type": "foaf:Person",
+ "foaf:name": "Leonardo da Vinci"
+ }
}
- },
- {
- "@id": "http://viaf.org/viaf/24604287/",
- "@type": "foaf:Person",
- "foaf:made": {
- "@id": "http://www.wikidata.org/entity/Q12418"
- },
- "foaf:name": "Leonardo da Vinci"
}
]
}
@@ -714,6 +717,8 @@
contributions to the RDF 1.1 version, nor does it list the
current RDF WG members.</p>
+ <p class="issue">Should include Antoine Isaac</p>
+
<p>The RDF 2004 editors acknowledge the contributions from many
members of the RDF Core Working Group. Specific thanks are due to
Art Barstow, Dave Beckett, Dan Brickley, Ron Daniel, Ben