--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadOriginalSource.ttl Wed May 16 11:54:48 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadOriginalSource.ttl Wed May 16 17:04:25 2012 +0100
@@ -3,33 +3,31 @@
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix lang: <http://lexvo.org/id/iso639-3/> .
+@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix : <http://example.com/> .
## Having an original source is a particular case of derivation.
-:myQuote
- a prov:Entity;
- prov:value """In a village of La Mancha, the name of which I have no desire
- to call to mind, there lived not long since one of those gentlemen
- that keep a lance in the lance-rack, an old buckler, a lean hack,
- and a greyhound for coursing.""";
- prov:hadOriginalSource <http://dbpedia.org/resource/Don_Quixote>;
- prov:wasDerivedFrom <http://dbpedia.org/resource/Don_Quixote>; # This is inferred.
- prov:qualifiedSource [
- a prov:Source;
- prov:entity <http://dbpedia.org/resource/Don_Quixote>;
- :volume 1;
- :chapter 1;
- ];
-.
-
-<http://dbpedia.org/resource/Don_Quixote>
- a prov:Entity;
- prov:wasAttributedTo :cervantes;
- foaf:homepage <http://en.wikipedia.org/wiki/Don_Quixote>;
-.
+<http://www.gutenberg.org/ebooks/996> dcterms:title "Don Quixote" ;
+ rdf:type prov:Entity, frbr:Work ;
+ prov:wasAttributedTo :ormsby ;
+ dcterms:language lang:eng ;
+ prov:hadOriginalSource <http://cultura.linkeddata.es/BNE/resource/C1001/XX2197892> .
+
+#### The English version book is a translation that is based on the original Spanish book
+
+<http://cultura.linkeddata.es/BNE/resource/C1001/XX2197892> ;
+ rdf:type prov:Entity, frbr:Work ;
+ prov:wasAttributedTo :cervantes ;
+ dcterms:language lang:spa .
:cervantes
a prov:Person;
foaf:name "Miguel de Cervantes";
.
+
+:ormsby
+ a prov:Person;
+ foaf:name "John Ormsby";
+.