Agent, Organization, Person examples
authordgarijo
Mon, 23 Apr 2012 17:33:33 +0200
changeset 2468 7e99d1e2886d
parent 2456 a45f552f7d00
child 2469 daba1d2f1875
Agent, Organization, Person examples
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Person.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl	Mon Apr 23 17:28:24 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl	Mon Apr 23 17:33:33 2012 +0200
@@ -3,7 +3,7 @@
 @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/>
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
 
    :derek
       a prov:Agent, foaf:Person;
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl	Mon Apr 23 17:28:24 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl	Mon Apr 23 17:33:33 2012 +0200
@@ -3,5 +3,9 @@
 @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
+   :boogle 
+      a prov:Agent, prov:Organization, foaf:Organization;
+      foaf:name "Boogle".
+   . 
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Person.ttl	Mon Apr 23 17:28:24 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Person.ttl	Mon Apr 23 17:33:33 2012 +0200
@@ -2,6 +2,11 @@
 @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/> .
 
-# TODO
+:derek
+      a prov:Person, foaf:Person;
+      foaf:givenName      "Derek"^^xsd:string;
+      foaf:mbox           <mailto:dererk@example.org>;
+	  foaf:homePage       <http://dereck.example.com>;