eg 29
authorTim L <lebot@rpi.edu>
Sun, 27 May 2012 14:01:42 -0400
changeset 2997 b3828f082c13
parent 2996 35b021b1ad6e
child 2998 585d347c1c81
eg 29
examples/eg-29-pml-mappings/rdf/create/rdf/property_wasInformedBy.ttl
--- a/examples/eg-29-pml-mappings/rdf/create/rdf/property_wasInformedBy.ttl	Sun May 27 13:30:32 2012 -0400
+++ b/examples/eg-29-pml-mappings/rdf/create/rdf/property_wasInformedBy.ttl	Sun May 27 14:01:42 2012 -0400
@@ -6,4 +6,25 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:gossip_NS
+   a pmlj:NodeSet;
+   pmlj:hasConclusion [ rdfs:comment "some article" ];
+   pmlj:isConsequentOf :writing-celebrity-gossip;
+.
+
+:writing-celebrity-gossip
+   a pmlj:InferenceStep;
+   pmlj:hasInferenceEngine [ rdfs:comment "some author" ];
+   pmlj:hasAntecedentList ( :interception_NS );
+.
+
+:interception_NS
+   a pmlj:NodeSet;
+   pmlj:hasConclusion [ rdfs:comment "tidbit that went into article" ];
+   pmlj:isConsequentOf :voicemail-interception;
+.
+
+:voicemail-interception
+   a pmlj:InferenceStep; 
+   pmlj:hasInferenceEngine [ rdfs:comment "some eavesdropper" ];
+.