added Start, End, and updated wasEndedBy with correct spelling of 'Activity'.
authorStephan Zednik <zednis@rpi.edu>
Wed, 25 Apr 2012 16:03:41 -0600
changeset 2542 c41faf691bc6
parent 2541 9ff8ac5c1e86
child 2543 c588203c6727
added Start, End, and updated wasEndedBy with correct spelling of 'Activity'.
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_End.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Start.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasEndedBy.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_End.ttl	Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_End.ttl	Wed Apr 25 16:03:41 2012 -0600
@@ -4,4 +4,14 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:experiment 
+	a prov:Activity;
+	prov:wasEndedBy :inconsistentResult;
+	prov:qualifiedEnd [
+		a prov:End;
+		prov:entity :inconsistentResult;
+		prov:atTime "2011-07-16T01:52:02Z"^^xsd:dateTime;
+		prov:atLocation :scienceLab003
+	].
+	
+:inconsistentResult a prov:Entity.
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Start.ttl	Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Start.ttl	Wed Apr 25 16:03:41 2012 -0600
@@ -4,4 +4,14 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:experiment
+	a prov:Activity ;
+	prov:wasStartedBy :researcher ;
+	prov:qualifiedStart [
+		a prov:Start;
+		prov:entity :researcher;
+		prov:atTIme "2011-07-06T01:48:36Z"^^xsd:dateTime;
+		prov:atLocation :scienceLab003
+	].
+
+:researcher a prov:Entity.
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasEndedBy.ttl	Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasEndedBy.ttl	Wed Apr 25 16:03:41 2012 -0600
@@ -5,7 +5,7 @@
 @prefix :     <http://example.com/> .
 
 :experiment 
-	a prov:Acticity;
+	a prov:Activity;
 	prov:wasEndedBy :inconsistentResult;
 	prov:qualifiedEnd [
 		a prov:End;