--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Account.ttl Wed May 30 22:02:34 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/> .
-
-# An account can be described in many ways. A possibility is a named graph:
-:acc23_04_2012_dereck {
-
- :acc23_04_2012_dereck a prov:Account .
-
- :entity1 a prov:Entity .
- :agent1 a prov:Agent .
-
- #Other provenance statements.
-}
-
-# Another possibility is by pointing to the container of the provenance triples:
-<http://www.example.com/provTriples.txt> a prov:Account.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Bundle.ttl Wed May 30 22:05:44 2012 -0400
@@ -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/> .
+
+# An account can be described in many ways. A possibility is a named graph:
+:acc23_04_2012_dereck {
+
+ :acc23_04_2012_dereck a prov:Bundle .
+
+ :entity1 a prov:Entity .
+ :agent1 a prov:Agent .
+
+ #Other provenance statements.
+}
+
+# Another possibility is by pointing to the container of the provenance triples:
+<http://www.example.com/provTriples.txt> a prov:Bundle .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Delegation.ttl Wed May 30 22:05:44 2012 -0400
@@ -0,0 +1,20 @@
+@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/> .
+
+:policySale
+ a prov:Actvity;
+ prov:wasAssociatedWith :insuranceAgent_Frank;
+.
+
+:insuranceAgent_Frank
+ a prov:Person;
+ prov:actedOnBehalfOf :insuranceCompany_A;
+ prov:qualifiedDelegation [
+ a prov:Delegation;
+ prov:agent :insuranceCompany_A;
+ prov:hadRole :guarantor; # The company is the guarantor of the policy
+ ];
+.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Responsibility.ttl Wed May 30 22:02:34 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +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/> .
-
-:policySale
- a prov:Actvity;
- prov:wasAssociatedWith :insuranceAgent_Frank;
-.
-
-:insuranceAgent_Frank
- a prov:Person;
- prov:actedOnBehalfOf :insuranceCompany_A;
- prov:qualifiedResponsibility [
- a prov:Responsibility;
- prov:agent :insuranceCompany_A;
- prov:hadRole :guarantor; # The company is the guarantor of the policy
- ];
-.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedDelegation.ttl Wed May 30 22:05:44 2012 -0400
@@ -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/> .
+
+:traffic-stop
+ a prov:Activity;
+ prov:wasAssociatedWith :chauffeur,
+ :traffic-officer-34;
+ prov:qualifiedAssociation [
+ a prov:Association;
+ prov:agent :chauffeur;
+ prov:hadRole :violator; # The chauffeur was the one violating traffic rules.
+ ];
+ prov:qualifiedAssociation [
+ a prov:Association;
+ prov:agent :traffic-officer-34;
+ prov:hadRole :enforcer; # The officer was the one enforcing the traffic rules.
+ ];
+.
+
+:chauffeur
+ a prov:Person;
+ prov:actedOnBehalfOf :celebrity-in-car;
+ prov:qualifiedDelegation [
+ a prov:Delegation;
+ prov:agent :celebrity-in-car;
+ prov:hadRole :employer; # The celebrity employed the chauffeur during the enforcement.
+ ];
+.
+
+:traffic_officer_34
+ a prov:Person;
+ prov:actedOnBehalfOf :city-of-Paris;
+ prov:qualifiedDelegation [
+ a prov:Delegation;
+ prov:agent :city-of-Paris;
+ prov:hadRole :employer; # The city of Paris employed the officer during the enforcement.
+ ];
+.
+
+<> prov:wasDerivedFrom <http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#concept-communication> .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedResponsibility.ttl Wed May 30 22:02:34 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/> .
-
-:traffic-stop
- a prov:Activity;
- prov:wasAssociatedWith :chauffeur,
- :traffic-officer-34;
- prov:qualifiedAssociation [
- a prov:Association;
- prov:agent :chauffeur;
- prov:hadRole :violator; # The chauffeur was the one violating traffic rules.
- ];
- prov:qualifiedAssociation [
- a prov:Association;
- prov:agent :traffic-officer-34;
- prov:hadRole :enforcer; # The officer was the one enforcing the traffic rules.
- ];
-.
-
-:chauffeur
- a prov:Person;
- prov:actedOnBehalfOf :celebrity-in-car;
- prov:qualifiedResponsibility [
- a prov:Responsibility;
- prov:agent :celebrity-in-car;
- prov:hadRole :employer; # The celebrity employed the chauffeur during the enforcement.
- ];
-.
-
-:traffic_officer_34
- a prov:Person;
- prov:actedOnBehalfOf :city-of-Paris;
- prov:qualifiedResponsibility [
- a prov:Responsibility;
- prov:agent :city-of-Paris;
- prov:hadRole :employer; # The city of Paris employed the officer during the enforcement.
- ];
-.
-
-<> prov:wasDerivedFrom <http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#concept-communication> .