Difference between revisions of "Project:GetYourData"
Line 1: | Line 1: | ||
− | = | + | = Easy way: with portals = |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{SPARQL|query= | {{SPARQL|query= | ||
SELECT ?item ?itemLabel ?service ?serviceLabel ?web WHERE { | SELECT ?item ?itemLabel ?service ?serviceLabel ?web WHERE { | ||
Line 28: | Line 9: | ||
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . } | SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . } | ||
}|label=actors with some form of data rights portal|state=collapsed}} | }|label=actors with some form of data rights portal|state=collapsed}} | ||
+ | |||
== Categorizing the tools == | == Categorizing the tools == | ||
Not all the tools for quickly getting data back are the same, or follow the same process. | Not all the tools for quickly getting data back are the same, or follow the same process. | ||
Line 125: | Line 107: | ||
|} | |} | ||
− | == | + | = The other way: formal Subject Access Requests = |
+ | |||
+ | == Infrastructure for SARs == | ||
+ | * [[Development of SAR service|More on how the SAR service is built]] | ||
+ | * [[Data controller popup]] | ||
+ | |||
+ | = Results so far = | ||
+ | {{SPARQL|query=SELECT ?item ?itemLabel ?target ?targetLabel ?data_subject ?data_subjectLabel WHERE { | ||
+ | ?item pdiot:P3 pdio:Q1308. | ||
+ | OPTIONAL {?item pdiot:P99 ?target.} | ||
+ | OPTIONAL {?item pdiot:P229 ?data_subject} | ||
+ | SERVICE wikibase:label { | ||
+ | bd:serviceParam wikibase:language "en" . | ||
+ | } | ||
+ | }|label=requests known to this system|state=collapsed}} | ||
+ | |||
{{SPARQL|query= | {{SPARQL|query= | ||
SELECT ?item ?itemLabel ?dsLabel ?target ?targetLabel ?event ?eventLabel ?date ?comment WHERE { | SELECT ?item ?itemLabel ?dsLabel ?target ?targetLabel ?event ?eventLabel ?date ?comment WHERE { | ||
Line 139: | Line 136: | ||
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" . } | SERVICE wikibase:label {bd:serviceParam wikibase:language "en" . } | ||
} | } | ||
− | ORDER BY DESC(?date)|state=collapsed | + | ORDER BY DESC(?date)|state=collapsed|label=requests known to this system, with overview of intermediate events |
}} | }} |
Revision as of 23:54, 26 January 2020
Easy way: with portals
PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel ?service ?serviceLabel ?web WHERE {
?item pdiop:P144 ?statement.
?statement pdiops:P144 ?service.
?service pdiot:P4* pdio:Q188.
OPTIONAL {?statement pdiopq:P15 ?web}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
actors with some form of data rights portal (embedded)
Categorizing the tools
Not all the tools for quickly getting data back are the same, or follow the same process. Some
- give you a view on your data very quickly
- allow you to file your request but require coming back to the same place later to see the result
- allow you to file your request, but this just starts a process (often email exchange)
How should we categorize this? There is certainly a taxonomy there, not captured with the current modeling.
The current items we have, which are most likely not sufficient and confusing, are:
- data subject access request service (Q710)
- portability request service (Q711)
- data download service (Q2382)
- data direct download service (Q2914)
All those are subclasses of data rights service (Q188).
Assessment of the utility of the automated tools
We are building this table to assess the utility of the automated tools for disclosure of data collection.
The following tools have been identified as potentially most useful, although the extent of the data obtained varies drastically from one device/browser pair to the next.
user id | device | browser | Quantcast (Q836) (portal) | Oracle Data Cloud (Q1188) (portal) | MPlatform (Q1191) (portal) | Taboola (Q1553) (portal) | TripleLift (Q2876) (portal) | SpotX (Q2887) (portal) | AppNexus (Q139) (portal) | Outbrain (Q1492) (portal) |
---|---|---|---|---|---|---|---|---|---|---|
POD | laptop | firefox | 53 Mb for historystore | OOS: 51 pages, PS: 127 pages | "issue with your settings" | button doesn't click | 2 segments, 3 pages of identifiers | 7 DSPs, 11 DMPs, 0 segment | ~3000 segments | |
POD | laptop | chrome | requested | nothing | "issue with your settings" | freezes | 1 identifier (BidSwitch) | 0/1/0 | 8 segments | |
POD | ios | chrome | nothing | nothing | nothing | nothing | nothing | nothing | ||
POD | ios | firefox | nothing | nothing | nothing | nothing | nothing | nothing | ||
CH | laptop | safari | nothing | nothing | nothing | nothing | nothing | nothing |
The other way: formal Subject Access Requests
Infrastructure for SARs
Results so far
PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel ?target ?targetLabel ?data_subject ?data_subjectLabel WHERE {
?item pdiot:P3 pdio:Q1308.
OPTIONAL {?item pdiot:P99 ?target.}
OPTIONAL {?item pdiot:P229 ?data_subject}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
requests known to this system (embedded)
PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel ?dsLabel ?target ?targetLabel ?event ?eventLabel ?date ?comment WHERE {
?item pdiot:P3 pdio:Q1308.
OPTIONAL {?item pdiot:P229 ?ds.}
OPTIONAL {?item pdiot:P99 ?target.}
OPTIONAL {
?item pdiop:P136 ?eventStatement.
?eventStatement pdiops:P136 ?event.
OPTIONAL {?eventStatement pdiopq:P100 ?date}.
OPTIONAL {?eventStatement pdiopq:P126 ?comment}.
}
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" . }
}
ORDER BY DESC(?date)
requests known to this system, with overview of intermediate events (embedded)