prov-o examples
authorTim L <lebot@rpi.edu>
Mon, 23 Apr 2012 14:01:44 -0400
changeset 2459 0486dde1b404
parent 2458 1361ddf9fa40
child 2460 3836fdd5d150
prov-o examples
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasInvalidatedBy.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasInvalidatedBy.ttl	Mon Apr 23 11:33:46 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasInvalidatedBy.ttl	Mon Apr 23 14:01:44 2012 -0400
@@ -2,6 +2,25 @@
 @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
+:the-Painter prov:wasInvalidatedBy :Swissair_Flight_111_crash .
+
+:the-Painter 
+   a prov:Entity, :Painting;
+   rdfs:label "Le Peintre"@fr, "The Painter"@en;
+   prov:wasAttributedTo <http://dbpedia.org/resource/Pablo_Picasso>;
+.
+
+<http://dbpedia.org/resource/Pablo_Picasso> 
+   a prov:Agent;
+   foaf:depiction <http://upload.wikimedia.org/wikipedia/commons/9/98/Pablo_picasso_1.jpg>;
+.
+
+:Swissair_Flight_111_crash 
+   a prov:Activity;
+   prov:used <http://dbpedia.org/resource/Swissair_Flight_111>;
+.
+
+<> prov:wasDerivedFrom <http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#dfn-wasinvalidatedby> .