example qualifiedSource
authorSatya Sahoo <satya.sahoo@case.edu>
Mon, 30 Apr 2012 13:30:09 -0400
changeset 2661 6bc3f764fec0
parent 2660 99841b0a048c
child 2662 2c7d2348f2d3
example qualifiedSource
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedSource.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedSource.ttl	Mon Apr 30 13:01:37 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedSource.ttl	Mon Apr 30 13:30:09 2012 -0400
@@ -4,4 +4,12 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:temperatureReading
+  a prov:Entity;
+  prov:hadOriginalSource :temperatureSensor;
+  prov:qualifiedSource [
+    a prov:Source;
+    :partOf :weatherForecastNetwork;
+    prov:atLocation :SmokyMountainTrail;  
+  ];
+.