--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl	Mon Apr 23 14:24:06 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl	Mon Apr 23 15:28:08 2012 +0200
@@ -3,5 +3,17 @@
 @prefix owl:  <http://www.w3.org/2002/07/owl#> .
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/>
 
-# TODO
+   :derek
+      a prov:Agent, foaf:Person;
+      foaf:givenName      "Derek"^^xsd:string;
+      foaf:mbox           <mailto:dererk@example.org>;
+	  foaf:homePage       <http://dereck.example.com>;
+      prov:actedOnBehalfOf :chartgen;
+   .
+
+   :chartgen 
+      a prov:Agent, prov:Organization, foaf:Organization;
+      foaf:name "Chart Generators, Inc.";
+   .