Agent example
authordgarijo
Mon, 23 Apr 2012 15:28:08 +0200
changeset 2443 e6f1a6f0eaf9
parent 2442 0c96776eecb4
child 2444 7f8fd09d7f72
child 2447 4a37e2659b63
Agent example
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl
--- 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.";
+   .