removed foaf:Person typing.
authorTim L <lebot@rpi.edu>
Mon, 14 May 2012 14:37:49 -0400
changeset 2800 0bea0a5f057c
parent 2799 eca886549ccb
child 2801 d92de2845a14
removed foaf:Person typing.
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 May 14 14:34:33 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl	Mon May 14 14:37:49 2012 -0400
@@ -2,18 +2,18 @@
 @prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
 @prefix owl:  <http://www.w3.org/2002/07/owl#> .
 @prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
 @prefix :     <http://example.com/> .
-@prefix foaf: <http://xmlns.com/foaf/0.1/> .
 
-   :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;
-   .
+:derek
+   a prov:Agent, prov: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.";
-   . 
+:chartgen 
+   a prov:Agent, prov:Organization;
+   foaf:name "Chart Generators, Inc.";
+.