--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Account.ttl Mon Apr 23 15:18:46 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Account.ttl Mon Apr 23 15:19:03 2012 -0400
@@ -4,4 +4,18 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+# An account can be described in many ways. A possibility is a named graph:
+:acc23_04_2012_dereck{
+
+:acc23_04_2012_dereck a prov:Account.
+
+:entity1 a prov:Entity.
+
+:agent1 a prov:Agent.
+
+#Other provenance statements.
+
+}
+
+# Another possibility is by pointing to the container of the provenance triples:
+<http://www.example.com/provTriples.txt> a prov:Account.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl Mon Apr 23 15:18:46 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl Mon Apr 23 15:19:03 2012 -0400
@@ -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_Note.ttl Mon Apr 23 15:18:46 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Note.ttl Mon Apr 23 15:19:03 2012 -0400
@@ -4,4 +4,14 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:post112
+ a prov:Entity;
+ prov:hasAnnotation :parserNote.
+
+:parserNote{
+ :parserNote a prov:Note.
+ :post112 :parsedAt 2012-04-15T13:00:00-04:00"^^xsd:dateTime.
+
+ #Other statements annotating the resource could be added here
+}
+
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl Mon Apr 23 15:18:46 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl Mon Apr 23 15:19:03 2012 -0400
@@ -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/property_hasAnnotation.ttl Mon Apr 23 15:18:46 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hasAnnotation.ttl Mon Apr 23 15:19:03 2012 -0400
@@ -4,4 +4,13 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:post112
+ a prov:Entity;
+ prov:hasAnnotation :parserNote.
+
+:parserNote{
+ :parserNote a prov:Note.
+ :post112 :parsedAt 2012-04-15T13:00:00-04:00"^^xsd:dateTime.
+
+ #Other statements annotating the resource could be added here
+}