--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-37-delegation-direction/rdf/eg-37-delegation-direction.ttl Mon Jun 11 16:06:29 2012 +0100
@@ -0,0 +1,50 @@
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@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 sd: <http://www.w3.org/ns/sparql-service-description#> .
+@prefix dcat: <http://www.w3.org/ns/dcat#> .
+@prefix void: <http://rdfs.org/ns/void#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix : <http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-37-delegation-direction/rdf/eg-37-delegation-direction#> .
+
+<>
+ a prov:Bundle;
+ prov:wasDerivedFrom <http://www.w3.org/2011/prov/wiki/File:DelegationSecretary.jpg>;
+ prov:wasAttributedTo <http://soiland-reyes.com/stian/#me>,
+ <http://www.mygrid.org.uk/about-us/people/core-mygrid-team/alan-williams/>;
+ rdfs:seeAlso <http://www.w3.org/2011/prov/wiki/Eg-37-delegation-direction>;
+.
+
+
+:Bob a prov:Person;
+ prov:qualifiedDelegation :emailAccess;
+.
+
+:Alice a prov:Person;
+.
+
+:emailChecking a prov:Activity;
+.
+
+:secretary a prov:Role;
+.
+
+:emailAccess a prov:Delegation;
+ prov:agent :Alice;
+ prov:hadActivity :emailChecking;
+ prov:hadRole :secretary;
+.
+
+
+
+# But what is the unqualified property implied by this delegation?
+
+:questions = {
+ :Alice ?a :Bob.
+ :Bob ?b :Alice.
+} .
+
+