--- 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" ];
+.