--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedTrace.ttl Mon Apr 23 16:02:58 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedTrace.ttl Mon Apr 23 16:18:23 2012 -0400
@@ -1,7 +1,23 @@
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+<http://dbpedia.org/resource/Hurricane_Isabel>
+ a prov:Entity, :Hurricane;
+ rdfs:label "Hurricane Isabel";
+ prov:wasTracedTo :butterfly_456;
+ prov:qualifiedTrace [
+ a prov:Trace;
+ rdfs:seeAlso <http://en.wikipedia.org/wiki/Butterfly_effect>;
+ ];
+.
+
+:butterfly_456
+ a prov:Entity, :Butterfly;
+ foaf:depiction <http://upload.wikimedia.org/wikipedia/commons/3/3d/Charaxes_brutus_natalensis.jpg>;
+.
+
+<> prov:wasDerivedFrom <http://en.wikipedia.org/wiki/Butterfly_effect> .