--- a/ontology/khalid-jun-dropbox/eg16-journalism-qualified-association.ttl Sun Apr 01 13:39:15 2012 -0400
+++ b/ontology/khalid-jun-dropbox/eg16-journalism-qualified-association.ttl Sun Apr 01 15:16:05 2012 -0400
@@ -1,21 +1,16 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix ex: <http://example.org#> .
-# (Using Starting Point terms)
-# Derek was responsible for the chart making in some way.
-
-ex:illustrationActivity
- a prov:Activity;
- prov:wasAssociatedWith ex:derek;
+ex:illustrationActivity
+ a prov:Activity; ## (Using Starting Point terms)
+ prov:wasAssociatedWith ex:derek; ## Derek was responsible for the chart making in some way.
.
ex:derek a prov:Agent .
-# Qualification: What plan (or recipe, instructions) did Derek follow when creating the graphical chart?
-
ex:illustrationActivity
- prov:qualifiedAssociation [
- a prov:Association;
+ prov:qualifiedAssociation [ ## Qualification: What plan (or recipe, instructions)
+ a prov:Association; ## did Derek follow when creating the graphical chart?
prov:hadPlan ex:tutorial_blog;
prov:agent ex:derek
];
--- a/ontology/khalid-jun-dropbox/eg16-journalism-qualified-derivation.ttl Sun Apr 01 13:39:15 2012 -0400
+++ b/ontology/khalid-jun-dropbox/eg16-journalism-qualified-derivation.ttl Sun Apr 01 15:16:05 2012 -0400
@@ -2,24 +2,19 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix ex: <http://example.org#> .
-# (Using Starting Point terms)
-# The chart was derivation from the aggregate.
-
ex:chart1
- a prov:Entity;
- prov:wasDerivedFrom ex:aggregatedByRegions;
+ a prov:Entity; ## (Using Starting Point terms)
+ prov:wasDerivedFrom ex:aggregatedByRegions; ## The chart was derivation from the aggregate.
.
ex:aggregatedByRegions a prov:Entity .
-# Qualification: additional information about the derivation:
-
ex:chart1
- prov:qualifiedDerivation [
+ prov:qualifiedDerivation [
a prov:Derivation;
- prov:entity ex:aggregatedByRegions;
- prov:hadUsage :usage; # Which activity derived the aggregate?
- prov:hadActivity :activity; # What did the activity use to derive the aggregate?
- prov:hadGeneration :generation; # How did the activity generate the derived aggregate?
+ prov:entity ex:aggregatedByRegions; ## Qualification: additional information about the derivation:
+ prov:hadUsage :usage; ## Which activity derived the aggregate?
+ prov:hadActivity :activity; ## What did the activity use to derive the aggregate?
+ prov:hadGeneration :generation; ## How did the activity generate the derived aggregate?
];
.
--- a/ontology/khalid-jun-dropbox/eg16-journalism-qualified-generation.ttl Sun Apr 01 13:39:15 2012 -0400
+++ b/ontology/khalid-jun-dropbox/eg16-journalism-qualified-generation.ttl Sun Apr 01 15:16:05 2012 -0400
@@ -2,22 +2,17 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix ex: <http://example.org#> .
-# (Using Starting Point terms)
-# The chart was generated in an illustration activity.
-
ex:chart1
- a prov:Entity;
- prov:wasGeneratedBy ex:illustrationActivity;
+ a prov:Entity; ## (Using Starting Point terms)
+ prov:wasGeneratedBy ex:illustrationActivity; ## The chart was generated in an illustration activity.
.
ex:illustrationActivity a prov:Activity .
-# Qualification: The chart was generated by the activity at a particular time.
-
ex:chart1
prov:qualifiedGeneration [
a prov:Generation;
- prov:activity ex:illustrationActivity;
- prov:atTime "2011-07-14T15:52:14Z"^^xsd:dateTime;
+ prov:activity ex:illustrationActivity; ## Qualification: The chart was
+ prov:atTime "2011-07-14T15:52:14Z"^^xsd:dateTime; ## generated at a particular time.
];
.
--- a/ontology/khalid-jun-dropbox/eg16-journalism-qualified-usage.ttl Sun Apr 01 13:39:15 2012 -0400
+++ b/ontology/khalid-jun-dropbox/eg16-journalism-qualified-usage.ttl Sun Apr 01 15:16:05 2012 -0400
@@ -2,22 +2,17 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix ex: <http://example.org#> .
-# (Using Starting Point terms)
-# The aggregated data was used to create the chart.
-
ex:illustrationActivity
- a prov:Activity;
- prov:used ex:aggregatedByRegions;
+ a prov:Activity; ## (Using Starting Point terms)
+ prov:used ex:aggregatedByRegions; ## The aggregated data was used to create the chart.
.
ex:aggregatedByRegions a prov:Entity .
-# Qualification: The aggregated data was used a particular time when creating the chart.
-
ex:illustrationActivity
prov:qualifiedUsage [
a prov:Usage;
- prov:entity ex:aggregatedByRegions;
- prov:atTime ""^^xsd:dateTime
+ prov:entity ex:aggregatedByRegions; ## Qualification: The aggregated data was used
+ prov:atTime ""^^xsd:dateTime ## at a particular time when creating the chart.
];
.