--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_CollectionInvolvement.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_CollectionInvolvement.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,4 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+### TODO
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Derivation.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Derivation.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,14 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:bar_chart prov:wasDerivedFrom :aggregatedByRegions ;
+ prov:qualifiedDerivation [
+ a prov:Derivation ;
+ prov:hadGeneration :illustration ; ## more details about the activity underpinning the derivation
+ prov:entity :aggregatedByRegions ;
+ ]
+.
+
+:illustration a prov:Generation, prov:InstantaneousEvent ;
+ prov:atTime "2012-04-03T00:00:01Z"^^xsd:dateTime;
+.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Membership.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Membership.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,21 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+
+:e1 a prov:Entity .
+:e2 a prov:Entity .
+
+:c1 a prov:Dictionary;
+ prov:membership [
+ a prov:Membership;
+ prov:member [
+ a prov:KeyValuePair;
+ prov:key "k1"^^xsd:string;
+ prov:value :e1
+ ], [
+ a prov:KeyValuePair;
+ prov:key "k2"^^xsd:string;
+ prov:value :e2
+ ];
+ ];
+.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_alternateOf.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_alternateOf.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,30 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:london_forecast_0412 a prov:Entity ;
+ prov:wasAttributedTo :bbc ;
+ prov:wasGeneratedBy [
+ a prov:Activity ;
+ prov:endedAtTime "2012-04-12T00:00:00-04:00"^^xsd:dateTime;
+ ]
+.
+
+
+:london_forecast_0413 a prov:Entity ;
+ prov:wasAttributedTo :bbc ;
+ prov:wasGeneratedBy [
+ a prov:Activity ;
+ prov:endedAtTime "2012-04-13T00:00:00-04:00"^^xsd:dateTime;
+ ]
+.
+
+
+:london_forecast a prov:Entity ;
+ prov:wasAttributedTo :bbc ;
+.
+
+### :london_forecast_0412 and :london_forecast_0413 are both specialization of the more general entity :london_forecast
+
+:london_forecast_0412 prov:alternateOf :london_forecast_0413 ;
+ prov:specializationOf :london_forecast ;
+.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_derivedByInsertionFrom.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_derivedByInsertionFrom.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,25 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+
+:e1 a prov:Entity .
+:e2 a prov:Entity .
+
+:c a prov:EmptyDictionary .
+
+:c1 a prov:Dictionary;
+ prov:derivedByInsertionFrom :c;
+ prov:qualifiedInsertion [
+ a prov:Insertion;
+ prov:dictionary :c;
+ prov:inserted [
+ a prov:KeyValuePair;
+ prov:key "k1"^^xsd:string;
+ prov:value :e1;
+ ], [
+ a prov:KeyValuePair;
+ prov:key "k2"^^xsd:string;
+ prov:value :e2;
+ ];
+ ];
+.
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadGeneration.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadGeneration.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,23 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:bar_chart prov:wasDerivedFrom :aggregatedByRegions ;
+ prov:qualifiedDerivation [
+ a prov:Derivation ;
+ prov:hadGeneration :illustration ;
+ ]
+.
+
+:illustration a prov:Generation, prov:InstantaneousEvent ;
+ prov:atTime "2012-04-03T00:00:01Z"^^xsd:dateTime;
+.
+
+### an alternative way to express some of the above information
+
+:bar_chart prov:wasDerivedFrom :aggregatedByRegions ;
+ prov:wasGeneratedBy :illustrationActivity ;
+.
+
+:illustrationActivity a prov:Activity ;
+ prov:endedAtTime "2012-04-03T00:00:01Z"^^xsd:dateTime;
+.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedAttribution.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedAttribution.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,20 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+
+:nationalRegionsList
+ a prov:Entity;
+ prov:qualifedAttribution [
+ a prov:Attribution ;
+ prov:agent :civil_action_group.;
+ prov:hadRole :owner;
+ ]
+.
+
+
+### alternative way to express some of the above information
+
+:nationalRegionsList
+ a prov:Entity;
+ prov:wasAttributedTo :civil_action_group.
+
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_specializationOf.ttl Tue Apr 24 17:51:00 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_specializationOf.ttl Tue Apr 24 17:51:26 2012 +0200
@@ -4,4 +4,30 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:london_forecast_0412 a prov:Entity ;
+ prov:wasAttributedTo :bbc ;
+ prov:wasGeneratedBy [
+ a prov:Activity ;
+ prov:endedAtTime "2012-04-12T00:00:00-04:00"^^xsd:dateTime;
+ ]
+.
+
+
+:london_forecast_0413 a prov:Entity ;
+ prov:wasAttributedTo :bbc ;
+ prov:wasGeneratedBy [
+ a prov:Activity ;
+ prov:endedAtTime "2012-04-13T00:00:00-04:00"^^xsd:dateTime;
+ ]
+.
+
+
+:london_forecast a prov:Entity ;
+ prov:wasAttributedTo :bbc ;
+.
+
+### :london_forecast_0412 and :london_forecast_0413 are both specialization of the more general entity :london_forecast
+
+:london_forecast_0412 prov:alternateOf :london_forecast_0413 ;
+ prov:specializationOf :london_forecast ;
+.