filled in example for Activity.
authorTim L <lebot@rpi.edu>
Sun, 15 Apr 2012 13:27:07 -0400
changeset 2303 3bd0fe4c3de2
parent 2302 a40645d2f643
child 2304 6db5b1294b72
filled in example for Activity.
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Activity.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Activity.ttl	Sun Apr 15 13:07:04 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Activity.ttl	Sun Apr 15 13:27:07 2012 -0400
@@ -4,4 +4,12 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:graduation
+   a prov:Activity, :Graduation;
+   prov:startedAtTime "2012-04-15T13:00:00-04:00"^^xsd:dateTime;
+   prov:used      :ms_smith;
+   prov:generated :doctor_smith;
+   prov:endedAtTime "2012-04-15T14:30:00-04:00"^^xsd:dateTime;
+.
+:ms_smith     a prov:Entity .
+:doctor_smith a prov:Entity .