--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_CollectionInvolvement.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,7 @@
+@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/> .
+
+### TODO
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_CompleteCollection.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,37 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix ex: <http://example.com/vocab#> .
+@prefix : <http://example.com/> .
+
+:the-first-us-supreme-court
+ a prov:Collection, prov:CompleteCollection, ex:JayCourt;
+ dcterms:description [
+ a prov:Entity;
+ prov:value "1789–1792: J. Rutledge Wm. Cushing J. Wilson J. Blair J. Iredell";
+ prov:wasQuotedFrom :page-by-composition;
+ ];
+ prov:qualifiedGeneration [
+ a prov:Generation;
+ dcterms:date "1789"^^xsd:gYear;
+ ];
+ prov:qualifiedInvalidation [
+ a prov:Invalidation;
+ dcterms:date "1792"^^xsd:gYear;
+ ];
+ prov:hadMember <http://dbpedia.org/resource/John_Jay>,
+ <http://dbpedia.org/resource/John_Rutledge>,
+ <http://dbpedia.org/resource/William_Cushing>,
+ <http://dbpedia.org/resource/James_Wilson>,
+ <http://dbpedia.org/resource/John_Blair,_Jr.>,
+ <http://dbpedia.org/resource/James_Iredell>;
+.
+
+:page-by-composition
+ a prov:Entity, :WikipediaPage;
+ prov:specializationOf
+ <http://en.wikipedia.org/wiki/List_of_Justices_of_the_Supreme_Court_of_the_United_States_by_court_composition>;
+ prov:generatedAtTime "2012-05-16T14:33"^^xsd:dateTime;
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_CompleteMembership.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,41 @@
+@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/> .
+
+:e1 a prov:Entity .
+:e2 a prov:Entity .
+
+:c1 a prov:Dictionary, prov:Entity;
+ prov:membership [
+ a prov:CompleteMembership, prov:Membership;
+ # These are the members, and all the members of c1
+ prov:member [
+ a prov:KeyValuePair;
+ prov:key "k1"^^xsd:string;
+ prov:value :e1;
+ ], [
+ a prov:KeyValuePair;
+ prov:key "k2"^^xsd:string;
+ prov:value :e2;
+ ]
+ ] .
+
+:c2
+ a prov:Dictionary, prov:Entity;
+ prov:derivedByRemovalFrom :c1;
+ prov:qualifiedRemoval [
+ a prov:Removal;
+ prov:collection :c1;
+ prov:removedKey "k1"^^xsd:string,
+ "k2"^^xsd:string;
+ ];
+.
+
+## As membership on :c1 is complete, we can infer:
+#
+# :c2 a prov:EmptyDictionary;
+# prov:membership [
+# a prov:CompleteMembership
+# ] .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_ContextualizedEntity.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,61 @@
+@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 perf: <http://example.com/performance/> .
+@prefix tool: <http://example.com/tool/> .
+@prefix : <http://example.com/> .
+
+:run1 {
+ :a1
+ a prov:Activity ;
+
+ # Duration was 1 hour.
+ prov:startedAtTime "2011-11-16T16:00:00"^^xsd:dateTime ;
+ prov:endedAtTime "2011-11-16T17:00:00"^^xsd:dateTime ;
+ prov:wasAssociatedWith :bob ;
+ prov:qualifiedAssociation [
+ a prov:Association ;
+ prov:hadRole :controller ;
+ ] ;
+ .
+ :controller
+ a prov:Role ;
+ rdfs:label "controller" ;
+ .
+}
+
+:run2 {
+ :a2
+ a prov:Activity ;
+
+ # Duration was 7 hours.
+ prov:startedAtTime "2011-11-17T10:00:00"^^xsd:dateTime ;
+ prov:endedAtTime "2011-11-17T17:00:00"^^xsd:dateTime ;
+ prov:wasAssociatedWith :bob ;
+ prov:qualifiedAssociation [
+ a prov:Association ;
+ prov:hadRole :controller ;
+ ] ;
+ .
+ :controller
+ a prov:Role ;
+ rdfs:label "controller" ;
+ .
+}
+
+tool:analysis01 {
+ tool:bob-2011-11-16
+ a prov:Agent, prov:ContextualizedEntity ;
+ prov:contextualized :bob ;
+ prov:inContext :run1 ;
+ perf:rating perf:good ;
+ .
+
+ tool:bob-2011-11-17
+ a prov:Agent, prov:ContextualizedEntity ;
+ prov:contextualized :bob ;
+ prov:inContext :run2 ;
+ perf:rating perf:bad ;
+ .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_Dictionary.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,12 @@
+@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/> .
+
+:studentRegister_2012
+ a prov:Dictionary, prov:Entity;
+ prov:derivedByInsertionFrom :studentRegister_2011;
+ :hasTotalStudents 45;
+ :wasCreatedBy :bob;
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_DictionaryInvolvement.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,18 @@
+@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/> .
+
+:c1 a prov:Dictionary .
+
+:c2
+ a prov:Dictionary,
+ prov:Entity;
+ prov:derivedByRemovalFrom :c1;
+ prov:qualifiedRemoval [
+ a prov:Removal, prov:DictionaryInfluence;
+ prov:dictionary :c1;
+ prov:removedKey "k1"^^xsd:string;
+ ];
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_IncompleteCollection.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,14 @@
+@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 ex: <http://example.com/vocab#> .
+@prefix : <http://example.com/> .
+
+:todays-us-supreme-court
+ a prov:IncompleteCollection, # The asserter of this set believes that there are
+ ex:RobertsCourt; # more members to this collection of U.S. Supreme Court.
+
+ prov:hadMember <http://dbpedia.org/resource/Antonin_Scalia>,
+ <http://dbpedia.org/resource/Elena_Kagan>;
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_Insertion.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,24 @@
+@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/> .
+
+:our-NEW-baseball-team-field-positions
+ a prov:Dictionary,
+ :FieldPositions;
+ prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
+ prov:qualifiedInsertion [
+ a prov:Insertion;
+ prov:collection :our-old-baseball-team-field-positions;
+ prov:inserted [
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
+ ];
+ ];
+.
+
+<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
+
+:our-old-baseball-team-field-positions a prov:Dictionary .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_KeyValuePair.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,46 @@
+@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/> .
+
+:our-NEW-baseball-team-field-positions
+ a prov:Dictionary,
+ :FieldPositions;
+ prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
+ prov:qualifiedInsertion [
+ a prov:Insertion;
+ prov:collection :our-old-baseball-team-field-positions;
+ prov:inserted [
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
+ ];
+ ];
+ prov:hadActivity :hiring_jim_thorpe;
+.
+
+<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
+
+:hiring_jim_thorpe a prov:Activity .
+
+:our-old-baseball-team-field-positions
+ a prov:Dictionary,
+ :FieldPositions;
+ prov:membership [
+ a prov:Membership;
+ prov:member [
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue :george;
+ ];
+ prov:member [
+ a prov:KeyValuePair;
+ prov:pairKey "pitcher"^^xsd:string;
+ prov:pairValue :carl;
+ ];
+ ];
+.
+
+:george a prov:Entity .
+:carl a prov:Entity .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_Membership.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,27 @@
+@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/> .
+
+
+:e1 a prov:Entity .
+:e2 a prov:Entity .
+
+:c1
+ a prov:Dictionary,
+ prov:Entity;
+ prov:membership [
+ a prov:Membership;
+ # These are (some of the) members of c1
+ prov:member [
+ a prov:KeyValuePair;
+ prov:pairKey "k1"^^xsd:string;
+ prov:pairValue :e1;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "k2"^^xsd:string;
+ prov:pairValue :e2;
+ ];
+ ];
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_Note.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,18 @@
+@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/> .
+
+:post112
+ a prov:Entity ;
+ prov:hasAnnotation :parserNote ;
+.
+
+:parserNote a prov:Note .
+
+:parserNote {
+ :post112 :parsedAt "2012-04-15T13:00:00-04:00"^^xsd:dateTime .
+
+ # Other statements annotating the resource could be added here
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_ProvenanceService.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,7 @@
+@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/> .
+
+# TODO
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_Removal.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,19 @@
+@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/> .
+
+:c1 a prov:Dictionary .
+
+:c2
+ a prov:Dictionary,
+ prov:Entity;
+ prov:derivedByRemovalFrom :c1;
+ prov:qualifiedRemoval [
+ a prov:Removal, prov:DictionaryInfluence;
+ prov:dictionary :c1;
+ prov:removedKey "k1"^^xsd:string,
+ "k2"^^xsd:string;
+ ];
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/class_Trace.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,33 @@
+@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 dcterms: <http://purl.org/dc/terms/> .
+@prefix : <http://example.com/> .
+
+:newsArticle
+ a prov:Entity;
+ dcterms:title "Review of the last presidents of the United States of America"^^xsd:string;
+ prov:tracedTo :president_obama;
+ prov:qualifiedTrace :trace1;
+.
+
+:trace1
+ a prov:Trace;
+ prov:entity :president_obama;
+ prov:hasAnnotation :noteFromTheAuthor;
+.
+
+:president_obama
+ a prov:Entity, prov:Agent;
+.
+
+:noteFromTheAuthor a prov:Note ;
+.
+
+:noteFromTheAuthor {
+ :trace1
+ rdfs:comment "The main motivation for the article was the latest president"^^xsd:string;
+ :annotatedAtTime "2011-07-16T01:52:02Z"^^xsd:dateTime;
+ .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_collection.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,23 @@
+@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/> .
+
+# prov:collection references the previous collection
+# entity in a prov:qualifiedInsertion|prov:qualifiedRemoval
+:collection-version-6
+ a prov:Dictionary;
+ prov:derivedByInsertionFrom :collection-version-5 ;
+ prov:qualifiedInsertion [
+ a prov:Insertion;
+ prov:collection :collection-version-5 ;
+ prov:inserted [
+ a prov:KeyValuePair;
+ prov:key "k6"^^xsd:string ;
+ prov:value :e6 ;
+ ];
+ ] .
+
+:collection-version-5 a prov:Dictionary .
+:e6 a prov:Entity .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_derivedByInsertionFrom.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,28 @@
+@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/> .
+
+
+: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:pairKey "k1"^^xsd:string;
+ prov:pairValue :e1;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "k2"^^xsd:string;
+ prov:pairValue :e2;
+ ];
+ ];
+.
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_derivedByRemovalFrom.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,18 @@
+@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/> .
+
+:c1 a prov:Dictionary .
+
+:c2
+ a prov:Dictionary, prov:Entity;
+ prov:derivedByRemovalFrom :c1;
+ prov:qualifiedRemoval [
+ a prov:Removal, prov:DictionaryInfluence;
+ prov:dictionary :c1;
+ prov:removedKey "k1"^^xsd:string,
+ "k2"^^xsd:string;
+ ];
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_dictionary.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,20 @@
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix : <http://example.org/> .
+
+:e1 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:pairKey "k1"^^xsd:string;
+ prov:pairValue :e1;
+ ];
+ ];
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_hasProvenance.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,7 @@
+@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/> .
+
+# TODO
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_hasProvenanceService.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,7 @@
+@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/> .
+
+# TODO
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_inserted.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,24 @@
+@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/> .
+
+:our-NEW-baseball-team-field-positions
+ a prov:Dictionary,
+ :FieldPositions;
+ prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
+ prov:qualifiedInsertion [
+ a prov:Insertion;
+ prov:collection :our-old-baseball-team-field-positions;
+ prov:inserted [
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
+ ];
+ ];
+.
+
+<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
+
+:our-old-baseball-team-field-positions a prov:Dictionary .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_key.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,15 @@
+@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/> .
+
+# prov:key is used to reference the key in a prov:KeyValuePair.
+
+[]
+ a prov:KeyValuePair;
+ prov:key "first-baseman"^^xsd:string;
+ prov:value <http://dbpedia.org/resource/Jim_Thorpe>;
+.
+
+<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_member.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,26 @@
+@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/> .
+
+:our-old-baseball-team-field-positions
+ a prov:Dictionary,
+ :FieldPositions;
+ prov:membership [
+ a prov:Membership;
+ prov:member [
+ a prov:KeyValuePair;
+ prov:key "first-baseman"^^xsd:string;
+ prov:value :george;
+ ];
+ prov:member [
+ a prov:KeyValuePair;
+ prov:key "pitcher"^^xsd:string;
+ prov:value :carl;
+ ]
+ ];
+.
+
+:george a prov:Entity .
+:carl a prov:Entity .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_membership.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,24 @@
+@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/> .
+
+:e1 a prov:Entity .
+:e2 a prov:Entity .
+
+:c1 a prov:Dictionary, prov:Entity;
+ prov:membership [
+ a prov:Membership;
+ # These are (some of the) members of c1
+ prov:member [
+ a prov:KeyValuePair;
+ prov:key "k1"^^xsd:string;
+ prov:value :e1
+ ], [
+ a prov:KeyValuePair;
+ prov:key "k2"^^xsd:string;
+ prov:value :e2
+ ];
+ ];
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_pair.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,86 @@
+@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 dcterms: <http://purl.org/dc/terms/> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix : <http://example.com/> .
+
+:todays-us-supreme-court-as-dictionary
+ a prov:Dictionary, :RobertsCourt;
+ dcterms:description [
+ a prov:Entity;
+ prov:value """2010–present: A. Scalia A. Kennedy C. Thomas R.B. Ginsburg
+ S. Breyer S. Alito S. Sotomayor E. Kagan""";
+ prov:wasQuotedFrom :page-by-composition;
+ ];
+ prov:qualifiedGeneration [
+ a prov:Generation;
+
+ # Since we need to be imprecise, we can't use prov:generatedAtTime or prov:atTime
+ dcterms:date "2012"^^xsd:gYear;
+ ];
+
+ prov:wasDerivedFrom :the-first-us-supreme-court;
+
+ # We can qualify a KeyValuePair's membership in this Dictionary.
+ prov:qualifiedMembership [
+ a prov:Membership;
+ prov:pair [
+ a prov:KeyValuePair;
+ prov:pairKey "chief";
+ prov:pairValue <http://dbpedia.org/resource/John_Glover_Roberts,_Jr.>;
+ ];
+
+ # Here is my little addition about Chief Roberts.
+ prov:hadRole :chief-justice;
+ ];
+
+ # We can also qualify many KeyValuePairs' memberships in this Dictionary.
+ prov:qualifiedMembership [
+ a prov:Membership;
+
+ # Here is my little addition about the rest of the Chiefs.
+ prov:hadRole :associate-justice;
+
+ prov:pair [ # The same property is used to point to one or many KeyValuePairs.
+ a prov:KeyValuePair;
+ prov:pairKey "seat 9";
+ prov:pairValue <http://dbpedia.org/resource/Antonin_Scalia>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 4";
+ prov:pairValue <http://dbpedia.org/resource/Anthony_Kennedy>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 10";
+ prov:pairValue <http://dbpedia.org/resource/Clarence_Thomas>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 6";
+ prov:pairValue <http://dbpedia.org/resource/Ruth_Bader_Ginsburg>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 2";
+ prov:pairValue <http://dbpedia.org/resource/Stephen_Breyer>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 8";
+ prov:pairValue <http://dbpedia.org/resource/Samuel_Alito>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 1";
+ prov:pairValue <http://dbpedia.org/resource/Sonia_Sotomayor>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 3";
+ prov:pairValue <http://dbpedia.org/resource/Elena_Kagan>;
+ ];
+ ];
+.
+
+
+:page-by-composition
+ a prov:Entity, :WikipediaPage;
+ prov:specializationOf <http://en.wikipedia.org/wiki/List_of_Justices_of_the_Supreme_Court_of_the_United_States_by_court_composition>;
+ prov:generatedAtTime "2012-05-16T14:33"^^xsd:dateTime;
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_pairKey.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,13 @@
+@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/> .
+
+:baseball-player-fielding-assignment
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
+.
+
+<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_pairValue.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,14 @@
+@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/> .
+
+:baseball-player-fielding-assignment
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
+.
+
+<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_qualifiedInsertion.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,43 @@
+@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/> .
+
+:our-NEW-baseball-team-field-positions
+ a prov:Dictionary,
+ :FieldPositions;
+ prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
+ prov:qualifiedInsertion [
+ a prov:Insertion;
+ prov:collection :our-old-baseball-team-field-positions;
+ prov:inserted [
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
+ ];
+ ];
+.
+
+<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
+
+:our-old-baseball-team-field-positions
+ a prov:Dictionary,
+ :FieldPositions;
+ prov:membership [
+ a prov:Membership;
+ prov:member [
+ a prov:KeyValuePair;
+ prov:pairKey "first-baseman"^^xsd:string;
+ prov:pairValue :george;
+ ];
+ prov:member [
+ a prov:KeyValuePair;
+ prov:pairKey "pitcher"^^xsd:string;
+ prov:pairValue :carl;
+ ];
+ ];
+.
+
+:george a prov:Entity .
+:carl a prov:Entity .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_qualifiedMembership.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,67 @@
+@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/> .
+
+:todays-us-supreme-court-as-dictionary
+ a prov:Dictionary, :RobertsCourt;
+
+ # We can qualify a KeyValuePair's membership in this Dictionary.
+ prov:qualifiedMembership [
+ a prov:Membership;
+ prov:pair [
+ a prov:KeyValuePair;
+ prov:pairKey "chief";
+ prov:pairValue <http://dbpedia.org/resource/John_Glover_Roberts,_Jr.>;
+ ];
+
+ # Here is my little addition about Chief Roberts.
+ # (note, we can't use prov:hadRole)
+ :hadRole :chief-justice;
+ ];
+
+ # We can also qualify many KeyValuePairs' memberships in this Dictionary.
+ prov:qualifiedMembership [
+ a prov:Membership;
+
+ # Here is my little addition about the rest of the Chiefs.
+ # (note, we can't use prov:hadRole)
+ :hadRole :associate-justice;
+
+ # The same property is used to point to one or many KeyValuePairs.
+ prov:pair [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 9";
+ prov:pairValue <http://dbpedia.org/resource/Antonin_Scalia>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 4";
+ prov:pairValue <http://dbpedia.org/resource/Anthony_Kennedy>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 10";
+ prov:pairValue <http://dbpedia.org/resource/Clarence_Thomas>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 6";
+ prov:pairValue <http://dbpedia.org/resource/Ruth_Bader_Ginsburg>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 2";
+ prov:pairValue <http://dbpedia.org/resource/Stephen_Breyer>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 8";
+ prov:pairValue <http://dbpedia.org/resource/Samuel_Alito>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 1";
+ prov:pairValue <http://dbpedia.org/resource/Sonia_Sotomayor>;
+ ], [
+ a prov:KeyValuePair;
+ prov:pairKey "seat 3";
+ prov:pairValue <http://dbpedia.org/resource/Elena_Kagan>;
+ ];
+ ]; # <- the prov:Membership
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_qualifiedRemoval.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,18 @@
+@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/> .
+
+:d1 a prov:Dictionary .
+
+:d2
+ a prov:Dictionary, prov:Entity;
+ prov:derivedByRemovalFrom :d1;
+ prov:qualifiedRemoval [
+ a prov:Removal;
+ prov:dictionary :d1;
+ prov:removedKey "k1"^^xsd:string,
+ "k2"^^xsd:string;
+ ];
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_qualifiedTrace.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,22 @@
+@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 foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix : <http://example.com/> .
+
+<http://dbpedia.org/resource/Hurricane_Isabel>
+ a prov:Entity, :Hurricane;
+ rdfs:label "Hurricane Isabel";
+ prov:tracedTo :butterfly_456;
+ prov:qualifiedTrace [
+ a prov:Trace;
+ rdfs:seeAlso <http://en.wikipedia.org/wiki/Butterfly_effect>;
+ ];
+.
+
+:butterfly_456
+ a prov:Entity, :Butterfly;
+ foaf:depiction
+ <http://upload.wikimedia.org/wikipedia/commons/3/3d/Charaxes_brutus_natalensis.jpg>;
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_tracedTo.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,19 @@
+@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 dcterms: <http://purl.org/dc/terms/> .
+@prefix : <http://example.com/> .
+
+# An up-to-date web page listing the presidents of the United States
+# is traced to all of those who have held the office.
+
+<http://en.wikipedia.org/wiki/List_of_Presidents_of_the_United_States>
+ a prov:Entity;
+ dcterms:title "List of Presidents of the United States"^^xsd:string;
+ prov:tracedTo <http://dbpedia.org/resource/Barack_Obama>;
+.
+
+<http://dbpedia.org/resource/Barack_Obama>
+ a prov:Entity, prov:Person;
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_value.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,14 @@
+@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/> .
+
+:copied-string
+ a prov:Entity;
+ prov:value
+ """2010–present: A. Scalia A. Kennedy C. Thomas R.B. Ginsburg
+ S. Breyer S. Alito S. Sotomayor E. Kagan""";
+ prov:wasQuotedFrom
+ <http://purl.org/twc/page/wikipedia/us-supreme-court-by-composition>;
+.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/old/property_wasStartedByActivity.ttl Mon Jul 30 17:42:41 2012 +0100
@@ -0,0 +1,21 @@
+@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/> .
+
+:filling-fuel
+ a prov:Activity;
+ prov:startedAtTime "2012-04-24T18:21:00Z"^^xsd:dateTime;
+ prov:endedAtTime "2012-04-24T18:23:10Z"^^xsd:dateTime;
+ prov:wasAssociatedWith :driver;
+ prov:wasStartedByActivity :observing-low-fuel;
+.
+
+:observing-low-fuel
+ a prov:Activity;
+ prov:wasAssociatedWith :driver;
+ prov:startedAtTime "2012-04-24T17:45:00Z"^^xsd:dateTime;
+.
+
+:driver a prov:Person, prov:Agent .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_CollectionInvolvement.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +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/> .
-
-### TODO
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_CompleteCollection.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-@prefix dcterms: <http://purl.org/dc/terms/> .
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
-@prefix prov: <http://www.w3.org/ns/prov#> .
-@prefix ex: <http://example.com/vocab#> .
-@prefix : <http://example.com/> .
-
-:the-first-us-supreme-court
- a prov:Collection, prov:CompleteCollection, ex:JayCourt;
- dcterms:description [
- a prov:Entity;
- prov:value "1789–1792: J. Rutledge Wm. Cushing J. Wilson J. Blair J. Iredell";
- prov:wasQuotedFrom :page-by-composition;
- ];
- prov:qualifiedGeneration [
- a prov:Generation;
- dcterms:date "1789"^^xsd:gYear;
- ];
- prov:qualifiedInvalidation [
- a prov:Invalidation;
- dcterms:date "1792"^^xsd:gYear;
- ];
- prov:hadMember <http://dbpedia.org/resource/John_Jay>,
- <http://dbpedia.org/resource/John_Rutledge>,
- <http://dbpedia.org/resource/William_Cushing>,
- <http://dbpedia.org/resource/James_Wilson>,
- <http://dbpedia.org/resource/John_Blair,_Jr.>,
- <http://dbpedia.org/resource/James_Iredell>;
-.
-
-:page-by-composition
- a prov:Entity, :WikipediaPage;
- prov:specializationOf
- <http://en.wikipedia.org/wiki/List_of_Justices_of_the_Supreme_Court_of_the_United_States_by_court_composition>;
- prov:generatedAtTime "2012-05-16T14:33"^^xsd:dateTime;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_CompleteMembership.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,41 +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/> .
-
-:e1 a prov:Entity .
-:e2 a prov:Entity .
-
-:c1 a prov:Dictionary, prov:Entity;
- prov:membership [
- a prov:CompleteMembership, prov:Membership;
- # These are the members, and all the members of c1
- prov:member [
- a prov:KeyValuePair;
- prov:key "k1"^^xsd:string;
- prov:value :e1;
- ], [
- a prov:KeyValuePair;
- prov:key "k2"^^xsd:string;
- prov:value :e2;
- ]
- ] .
-
-:c2
- a prov:Dictionary, prov:Entity;
- prov:derivedByRemovalFrom :c1;
- prov:qualifiedRemoval [
- a prov:Removal;
- prov:collection :c1;
- prov:removedKey "k1"^^xsd:string,
- "k2"^^xsd:string;
- ];
-.
-
-## As membership on :c1 is complete, we can infer:
-#
-# :c2 a prov:EmptyDictionary;
-# prov:membership [
-# a prov:CompleteMembership
-# ] .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ContextualizedEntity.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,61 +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 perf: <http://example.com/performance/> .
-@prefix tool: <http://example.com/tool/> .
-@prefix : <http://example.com/> .
-
-:run1 {
- :a1
- a prov:Activity ;
-
- # Duration was 1 hour.
- prov:startedAtTime "2011-11-16T16:00:00"^^xsd:dateTime ;
- prov:endedAtTime "2011-11-16T17:00:00"^^xsd:dateTime ;
- prov:wasAssociatedWith :bob ;
- prov:qualifiedAssociation [
- a prov:Association ;
- prov:hadRole :controller ;
- ] ;
- .
- :controller
- a prov:Role ;
- rdfs:label "controller" ;
- .
-}
-
-:run2 {
- :a2
- a prov:Activity ;
-
- # Duration was 7 hours.
- prov:startedAtTime "2011-11-17T10:00:00"^^xsd:dateTime ;
- prov:endedAtTime "2011-11-17T17:00:00"^^xsd:dateTime ;
- prov:wasAssociatedWith :bob ;
- prov:qualifiedAssociation [
- a prov:Association ;
- prov:hadRole :controller ;
- ] ;
- .
- :controller
- a prov:Role ;
- rdfs:label "controller" ;
- .
-}
-
-tool:analysis01 {
- tool:bob-2011-11-16
- a prov:Agent, prov:ContextualizedEntity ;
- prov:contextualized :bob ;
- prov:inContext :run1 ;
- perf:rating perf:good ;
- .
-
- tool:bob-2011-11-17
- a prov:Agent, prov:ContextualizedEntity ;
- prov:contextualized :bob ;
- prov:inContext :run2 ;
- perf:rating perf:bad ;
- .
-}
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Dictionary.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +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/> .
-
-:studentRegister_2012
- a prov:Dictionary, prov:Entity;
- prov:derivedByInsertionFrom :studentRegister_2011;
- :hasTotalStudents 45;
- :wasCreatedBy :bob;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_DictionaryInvolvement.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +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/> .
-
-:c1 a prov:Dictionary .
-
-:c2
- a prov:Dictionary,
- prov:Entity;
- prov:derivedByRemovalFrom :c1;
- prov:qualifiedRemoval [
- a prov:Removal, prov:DictionaryInfluence;
- prov:dictionary :c1;
- prov:removedKey "k1"^^xsd:string;
- ];
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_IncompleteCollection.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +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 ex: <http://example.com/vocab#> .
-@prefix : <http://example.com/> .
-
-:todays-us-supreme-court
- a prov:IncompleteCollection, # The asserter of this set believes that there are
- ex:RobertsCourt; # more members to this collection of U.S. Supreme Court.
-
- prov:hadMember <http://dbpedia.org/resource/Antonin_Scalia>,
- <http://dbpedia.org/resource/Elena_Kagan>;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Insertion.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +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/> .
-
-:our-NEW-baseball-team-field-positions
- a prov:Dictionary,
- :FieldPositions;
- prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
- prov:qualifiedInsertion [
- a prov:Insertion;
- prov:collection :our-old-baseball-team-field-positions;
- prov:inserted [
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
- ];
- ];
-.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
-
-:our-old-baseball-team-field-positions a prov:Dictionary .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_KeyValuePair.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,46 +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/> .
-
-:our-NEW-baseball-team-field-positions
- a prov:Dictionary,
- :FieldPositions;
- prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
- prov:qualifiedInsertion [
- a prov:Insertion;
- prov:collection :our-old-baseball-team-field-positions;
- prov:inserted [
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
- ];
- ];
- prov:hadActivity :hiring_jim_thorpe;
-.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
-
-:hiring_jim_thorpe a prov:Activity .
-
-:our-old-baseball-team-field-positions
- a prov:Dictionary,
- :FieldPositions;
- prov:membership [
- a prov:Membership;
- prov:member [
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue :george;
- ];
- prov:member [
- a prov:KeyValuePair;
- prov:pairKey "pitcher"^^xsd:string;
- prov:pairValue :carl;
- ];
- ];
-.
-
-:george a prov:Entity .
-:carl a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Membership.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +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/> .
-
-
-:e1 a prov:Entity .
-:e2 a prov:Entity .
-
-:c1
- a prov:Dictionary,
- prov:Entity;
- prov:membership [
- a prov:Membership;
- # These are (some of the) members of c1
- prov:member [
- a prov:KeyValuePair;
- prov:pairKey "k1"^^xsd:string;
- prov:pairValue :e1;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "k2"^^xsd:string;
- prov:pairValue :e2;
- ];
- ];
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Note.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +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/> .
-
-:post112
- a prov:Entity ;
- prov:hasAnnotation :parserNote ;
-.
-
-:parserNote a prov:Note .
-
-:parserNote {
- :post112 :parsedAt "2012-04-15T13:00:00-04:00"^^xsd:dateTime .
-
- # Other statements annotating the resource could be added here
-}
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ProvenanceService.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +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/> .
-
-# TODO
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Removal.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +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/> .
-
-:c1 a prov:Dictionary .
-
-:c2
- a prov:Dictionary,
- prov:Entity;
- prov:derivedByRemovalFrom :c1;
- prov:qualifiedRemoval [
- a prov:Removal, prov:DictionaryInfluence;
- prov:dictionary :c1;
- prov:removedKey "k1"^^xsd:string,
- "k2"^^xsd:string;
- ];
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Trace.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +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 dcterms: <http://purl.org/dc/terms/> .
-@prefix : <http://example.com/> .
-
-:newsArticle
- a prov:Entity;
- dcterms:title "Review of the last presidents of the United States of America"^^xsd:string;
- prov:tracedTo :president_obama;
- prov:qualifiedTrace :trace1;
-.
-
-:trace1
- a prov:Trace;
- prov:entity :president_obama;
- prov:hasAnnotation :noteFromTheAuthor;
-.
-
-:president_obama
- a prov:Entity, prov:Agent;
-.
-
-:noteFromTheAuthor a prov:Note ;
-.
-
-:noteFromTheAuthor {
- :trace1
- rdfs:comment "The main motivation for the article was the latest president"^^xsd:string;
- :annotatedAtTime "2011-07-16T01:52:02Z"^^xsd:dateTime;
- .
-}
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_collection.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +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/> .
-
-# prov:collection references the previous collection
-# entity in a prov:qualifiedInsertion|prov:qualifiedRemoval
-:collection-version-6
- a prov:Dictionary;
- prov:derivedByInsertionFrom :collection-version-5 ;
- prov:qualifiedInsertion [
- a prov:Insertion;
- prov:collection :collection-version-5 ;
- prov:inserted [
- a prov:KeyValuePair;
- prov:key "k6"^^xsd:string ;
- prov:value :e6 ;
- ];
- ] .
-
-:collection-version-5 a prov:Dictionary .
-:e6 a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_derivedByInsertionFrom.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +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/> .
-
-
-: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:pairKey "k1"^^xsd:string;
- prov:pairValue :e1;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "k2"^^xsd:string;
- prov:pairValue :e2;
- ];
- ];
-.
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_derivedByRemovalFrom.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +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/> .
-
-:c1 a prov:Dictionary .
-
-:c2
- a prov:Dictionary, prov:Entity;
- prov:derivedByRemovalFrom :c1;
- prov:qualifiedRemoval [
- a prov:Removal, prov:DictionaryInfluence;
- prov:dictionary :c1;
- prov:removedKey "k1"^^xsd:string,
- "k2"^^xsd:string;
- ];
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_dictionary.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-@prefix prov: <http://www.w3.org/ns/prov#> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-@prefix : <http://example.org/> .
-
-:e1 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:pairKey "k1"^^xsd:string;
- prov:pairValue :e1;
- ];
- ];
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hasProvenance.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +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/> .
-
-# TODO
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hasProvenanceService.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +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/> .
-
-# TODO
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_inserted.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +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/> .
-
-:our-NEW-baseball-team-field-positions
- a prov:Dictionary,
- :FieldPositions;
- prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
- prov:qualifiedInsertion [
- a prov:Insertion;
- prov:collection :our-old-baseball-team-field-positions;
- prov:inserted [
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
- ];
- ];
-.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
-
-:our-old-baseball-team-field-positions a prov:Dictionary .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_key.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +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/> .
-
-# prov:key is used to reference the key in a prov:KeyValuePair.
-
-[]
- a prov:KeyValuePair;
- prov:key "first-baseman"^^xsd:string;
- prov:value <http://dbpedia.org/resource/Jim_Thorpe>;
-.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_member.ttl Mon Jul 30 09:01:30 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/> .
-
-:our-old-baseball-team-field-positions
- a prov:Dictionary,
- :FieldPositions;
- prov:membership [
- a prov:Membership;
- prov:member [
- a prov:KeyValuePair;
- prov:key "first-baseman"^^xsd:string;
- prov:value :george;
- ];
- prov:member [
- a prov:KeyValuePair;
- prov:key "pitcher"^^xsd:string;
- prov:value :carl;
- ]
- ];
-.
-
-:george a prov:Entity .
-:carl a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_membership.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +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/> .
-
-:e1 a prov:Entity .
-:e2 a prov:Entity .
-
-:c1 a prov:Dictionary, prov:Entity;
- prov:membership [
- a prov:Membership;
- # These are (some of the) members of c1
- 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_pair.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,86 +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 dcterms: <http://purl.org/dc/terms/> .
-@prefix prov: <http://www.w3.org/ns/prov#> .
-@prefix : <http://example.com/> .
-
-:todays-us-supreme-court-as-dictionary
- a prov:Dictionary, :RobertsCourt;
- dcterms:description [
- a prov:Entity;
- prov:value """2010–present: A. Scalia A. Kennedy C. Thomas R.B. Ginsburg
- S. Breyer S. Alito S. Sotomayor E. Kagan""";
- prov:wasQuotedFrom :page-by-composition;
- ];
- prov:qualifiedGeneration [
- a prov:Generation;
-
- # Since we need to be imprecise, we can't use prov:generatedAtTime or prov:atTime
- dcterms:date "2012"^^xsd:gYear;
- ];
-
- prov:wasDerivedFrom :the-first-us-supreme-court;
-
- # We can qualify a KeyValuePair's membership in this Dictionary.
- prov:qualifiedMembership [
- a prov:Membership;
- prov:pair [
- a prov:KeyValuePair;
- prov:pairKey "chief";
- prov:pairValue <http://dbpedia.org/resource/John_Glover_Roberts,_Jr.>;
- ];
-
- # Here is my little addition about Chief Roberts.
- prov:hadRole :chief-justice;
- ];
-
- # We can also qualify many KeyValuePairs' memberships in this Dictionary.
- prov:qualifiedMembership [
- a prov:Membership;
-
- # Here is my little addition about the rest of the Chiefs.
- prov:hadRole :associate-justice;
-
- prov:pair [ # The same property is used to point to one or many KeyValuePairs.
- a prov:KeyValuePair;
- prov:pairKey "seat 9";
- prov:pairValue <http://dbpedia.org/resource/Antonin_Scalia>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 4";
- prov:pairValue <http://dbpedia.org/resource/Anthony_Kennedy>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 10";
- prov:pairValue <http://dbpedia.org/resource/Clarence_Thomas>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 6";
- prov:pairValue <http://dbpedia.org/resource/Ruth_Bader_Ginsburg>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 2";
- prov:pairValue <http://dbpedia.org/resource/Stephen_Breyer>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 8";
- prov:pairValue <http://dbpedia.org/resource/Samuel_Alito>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 1";
- prov:pairValue <http://dbpedia.org/resource/Sonia_Sotomayor>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 3";
- prov:pairValue <http://dbpedia.org/resource/Elena_Kagan>;
- ];
- ];
-.
-
-
-:page-by-composition
- a prov:Entity, :WikipediaPage;
- prov:specializationOf <http://en.wikipedia.org/wiki/List_of_Justices_of_the_Supreme_Court_of_the_United_States_by_court_composition>;
- prov:generatedAtTime "2012-05-16T14:33"^^xsd:dateTime;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_pairKey.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +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/> .
-
-:baseball-player-fielding-assignment
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
-.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_pairValue.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +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/> .
-
-:baseball-player-fielding-assignment
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
-.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
-
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInsertion.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,43 +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/> .
-
-:our-NEW-baseball-team-field-positions
- a prov:Dictionary,
- :FieldPositions;
- prov:derivedByInsertionFrom :our-old-baseball-team-field-positions;
- prov:qualifiedInsertion [
- a prov:Insertion;
- prov:collection :our-old-baseball-team-field-positions;
- prov:inserted [
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue <http://dbpedia.org/resource/Jim_Thorpe>;
- ];
- ];
-.
-
-<http://dbpedia.org/resource/Jim_Thorpe> a prov:Entity .
-
-:our-old-baseball-team-field-positions
- a prov:Dictionary,
- :FieldPositions;
- prov:membership [
- a prov:Membership;
- prov:member [
- a prov:KeyValuePair;
- prov:pairKey "first-baseman"^^xsd:string;
- prov:pairValue :george;
- ];
- prov:member [
- a prov:KeyValuePair;
- prov:pairKey "pitcher"^^xsd:string;
- prov:pairValue :carl;
- ];
- ];
-.
-
-:george a prov:Entity .
-:carl a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedMembership.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,67 +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/> .
-
-:todays-us-supreme-court-as-dictionary
- a prov:Dictionary, :RobertsCourt;
-
- # We can qualify a KeyValuePair's membership in this Dictionary.
- prov:qualifiedMembership [
- a prov:Membership;
- prov:pair [
- a prov:KeyValuePair;
- prov:pairKey "chief";
- prov:pairValue <http://dbpedia.org/resource/John_Glover_Roberts,_Jr.>;
- ];
-
- # Here is my little addition about Chief Roberts.
- # (note, we can't use prov:hadRole)
- :hadRole :chief-justice;
- ];
-
- # We can also qualify many KeyValuePairs' memberships in this Dictionary.
- prov:qualifiedMembership [
- a prov:Membership;
-
- # Here is my little addition about the rest of the Chiefs.
- # (note, we can't use prov:hadRole)
- :hadRole :associate-justice;
-
- # The same property is used to point to one or many KeyValuePairs.
- prov:pair [
- a prov:KeyValuePair;
- prov:pairKey "seat 9";
- prov:pairValue <http://dbpedia.org/resource/Antonin_Scalia>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 4";
- prov:pairValue <http://dbpedia.org/resource/Anthony_Kennedy>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 10";
- prov:pairValue <http://dbpedia.org/resource/Clarence_Thomas>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 6";
- prov:pairValue <http://dbpedia.org/resource/Ruth_Bader_Ginsburg>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 2";
- prov:pairValue <http://dbpedia.org/resource/Stephen_Breyer>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 8";
- prov:pairValue <http://dbpedia.org/resource/Samuel_Alito>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 1";
- prov:pairValue <http://dbpedia.org/resource/Sonia_Sotomayor>;
- ], [
- a prov:KeyValuePair;
- prov:pairKey "seat 3";
- prov:pairValue <http://dbpedia.org/resource/Elena_Kagan>;
- ];
- ]; # <- the prov:Membership
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedRemoval.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +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/> .
-
-:d1 a prov:Dictionary .
-
-:d2
- a prov:Dictionary, prov:Entity;
- prov:derivedByRemovalFrom :d1;
- prov:qualifiedRemoval [
- a prov:Removal;
- prov:dictionary :d1;
- prov:removedKey "k1"^^xsd:string,
- "k2"^^xsd:string;
- ];
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedTrace.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +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 foaf: <http://xmlns.com/foaf/0.1/> .
-@prefix prov: <http://www.w3.org/ns/prov#> .
-@prefix : <http://example.com/> .
-
-<http://dbpedia.org/resource/Hurricane_Isabel>
- a prov:Entity, :Hurricane;
- rdfs:label "Hurricane Isabel";
- prov:tracedTo :butterfly_456;
- prov:qualifiedTrace [
- a prov:Trace;
- rdfs:seeAlso <http://en.wikipedia.org/wiki/Butterfly_effect>;
- ];
-.
-
-:butterfly_456
- a prov:Entity, :Butterfly;
- foaf:depiction
- <http://upload.wikimedia.org/wikipedia/commons/3/3d/Charaxes_brutus_natalensis.jpg>;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_tracedTo.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +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 dcterms: <http://purl.org/dc/terms/> .
-@prefix : <http://example.com/> .
-
-# An up-to-date web page listing the presidents of the United States
-# is traced to all of those who have held the office.
-
-<http://en.wikipedia.org/wiki/List_of_Presidents_of_the_United_States>
- a prov:Entity;
- dcterms:title "List of Presidents of the United States"^^xsd:string;
- prov:tracedTo <http://dbpedia.org/resource/Barack_Obama>;
-.
-
-<http://dbpedia.org/resource/Barack_Obama>
- a prov:Entity, prov:Person;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_value.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +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/> .
-
-:copied-string
- a prov:Entity;
- prov:value
- """2010–present: A. Scalia A. Kennedy C. Thomas R.B. Ginsburg
- S. Breyer S. Alito S. Sotomayor E. Kagan""";
- prov:wasQuotedFrom
- <http://purl.org/twc/page/wikipedia/us-supreme-court-by-composition>;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasStartedByActivity.ttl Mon Jul 30 09:01:30 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +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/> .
-
-:filling-fuel
- a prov:Activity;
- prov:startedAtTime "2012-04-24T18:21:00Z"^^xsd:dateTime;
- prov:endedAtTime "2012-04-24T18:23:10Z"^^xsd:dateTime;
- prov:wasAssociatedWith :driver;
- prov:wasStartedByActivity :observing-low-fuel;
-.
-
-:observing-low-fuel
- a prov:Activity;
- prov:wasAssociatedWith :driver;
- prov:startedAtTime "2012-04-24T17:45:00Z"^^xsd:dateTime;
-.
-
-:driver a prov:Person, prov:Agent .