--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_value.ttl Mon Jun 18 14:27:35 2012 -0700
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_value.ttl Mon Jun 18 14:37:07 2012 -0700
@@ -4,14 +4,10 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# prov:value is used to reference the entity in a prov:KeyValuePair.
-# The object of a prov:value statement is inferred to be of type prov:Entity .
-# The subject of a prov:value statement is inferred to be of type prov:KeyValuePair.
-
-[]
- a prov:KeyValuePair;
- prov:key "first-baseman"^^xsd:string;
- prov:value <http://dbpedia.org/resource/Jim_Thorpe>;
+:copied-string
+ a prov:Entity;
+ prov:value
+ "2010–present: A. Scalia A. Kennedy C. Thomas R.B. Ginsburg S. Breyer S. Alito S. Sotomayor E. Kagan";
+ prov:wasQuotedFrom
+ <http://en.wikipedia.org/wiki/List_of_Justices_of_the_Supreme_Court_of_the_United_States_by_court_composition>;
.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .