Difference between revisions of "Project:GetYourData"
m (Podehaye moved page Requesting data to Project:Getyour) |
m (Podehaye moved page Project:Getyour to Project:GetYourData) |
Revision as of 23:55, 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)