involvement -> influence
authorTim L <lebot@rpi.edu>
Sat, 30 Jun 2012 19:56:37 -0400
changeset 3548 4723d8b90630
parent 3547 2ead883a7785
child 3549 cae4a75d0615
involvement -> influence
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInfluence.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInvolvement.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_influencer.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involvee.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInfluence.ttl	Sat Jun 30 19:54:19 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInfluence.ttl	Sat Jun 30 19:56:37 2012 -0400
@@ -4,4 +4,23 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+# EntityInfluence is intended to be an 'abstract' subclass of Influence 
+# for Influence that reference an entity. It is a superclass for concrete Influences 
+# (e.g. Usage, Derivation, Source) 
+
+# It is not recommended that the type EntityInfluence be used without also declaring
+# one of its concrete subclasses.
+
+# By definition, all instances of prov:Usage are also instances of prov:EntityInfluence.
+
+:sortActivity
+   a prov:Activity;
+   prov:used :datasetA;
+   prov:qualifiedUsage [
+      a prov:Usage, 
+        prov:EntityInfluence; ## Instances of Start, End, Usage, and Derivation qualify
+      prov:entity  :datasetA; ## the influencd of an Entity (cited by prov:entity)
+      prov:hadRole :inputToBeSorted;
+   ];
+   prov:generated :datasetB;
+.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInvolvement.ttl	Sat Jun 30 19:54:19 2012 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-@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 prov: <http://www.w3.org/ns/prov#> .
-@prefix :     <http://example.com/> .
-
-# EntityInfluence is intended to be an 'abstract' subclass of Influence 
-# for Influence that reference an entity. It is a superclass for concrete Influences 
-# (e.g. Usage, Derivation, Source) 
-
-# It is not recommended that the type EntityInfluence be used without also declaring
-# one of its concrete subclasses.
-
-# By definition, all instances of prov:Usage are also instances of prov:EntityInfluence.
-
-:sortActivity
-   a prov:Activity;
-   prov:used :datasetA;
-   prov:qualifiedUsage [
-      a prov:Usage, 
-        prov:EntityInfluence; ## Instances of Start, End, Usage, and Derivation qualify
-      prov:entity  :datasetA; ## the influencd of an Entity (cited by prov:entity)
-      prov:hadRole :inputToBeSorted;
-   ];
-   prov:generated :datasetB;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_influencer.ttl	Sat Jun 30 19:54:19 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_influencer.ttl	Sat Jun 30 19:56:37 2012 -0400
@@ -4,4 +4,31 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:illustrationActivity 
+   a prov:Activity;
+   prov:qualifiedUsage         :usage_1;
+   prov:qualifiedAssociation   :association_1;
+   prov:qualifiedCommunication :communication_1;
+.
+
+:usage_1
+   a prov:Usage;
+   prov:entity   :aggregatedByRegions;
+   prov:involvee :aggregatedByRegions; # Inferred
+.
+
+:association_1
+   a prov:Association;
+   prov:agent    :derek;
+   prov:involvee :derek; # - - - - - - - Inferred
+.
+
+:communication_1
+   a prov:Communication;
+   prov:activity :aggregationActivity;
+   prov:involvee :aggregationActivity; # Inferred
+.
+
+:aggregationActivity a prov:Activity .  
+:derek               a prov:Agent .
+:aggregatedByRegions a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involvee.ttl	Sat Jun 30 19:54:19 2012 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-@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 prov: <http://www.w3.org/ns/prov#> .
-@prefix :     <http://example.com/> .
-
-:illustrationActivity 
-   a prov:Activity;
-   prov:qualifiedUsage         :usage_1;
-   prov:qualifiedAssociation   :association_1;
-   prov:qualifiedCommunication :communication_1;
-.
-
-:usage_1
-   a prov:Usage;
-   prov:entity   :aggregatedByRegions;
-   prov:involvee :aggregatedByRegions; # Inferred
-.
-
-:association_1
-   a prov:Association;
-   prov:agent    :derek;
-   prov:involvee :derek; # - - - - - - - Inferred
-.
-
-:communication_1
-   a prov:Communication;
-   prov:activity :aggregationActivity;
-   prov:involvee :aggregationActivity; # Inferred
-.
-
-:aggregationActivity a prov:Activity .  
-:derek               a prov:Agent .
-:aggregatedByRegions a prov:Entity .