Difference between revisions of "Project:Vocabulary/GDPR"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
* {{P|3}} - {{Q|96}} | * {{P|3}} - {{Q|96}} | ||
* {{P|17}} - "mailto:johnny@example.com" | * {{P|17}} - "mailto:johnny@example.com" | ||
+ | ** {{Q|1062}} - {{Q|96}} - not currently checked but it should be, as there may be a general support email as well as a data protection officer specific email address. | ||
+ | * {{P|282}} - "https://company/privacy/contact" - this is necessary where there is no known email address for contacting the data protection officer, only a form. In these cases you probably still need to add {{P|17}} but with a dummy email address (and a comment qualifier making clear it is not a real address). The generated email then has to be manually pasted into the contact form for submission. | ||
* {{P|10}} - some data points | * {{P|10}} - some data points | ||
* {{P|15}} - URL (optional really) | * {{P|15}} - URL (optional really) |
Revision as of 15:04, 10 February 2020
Use cases
The Ontology need to be suitable for data entries and the usages of those data. We need to identify use case and test the ontology against those.
Example
Core snaks
- instance of (P3) - data controller (Q96)
- e-mail address (P17) - "mailto:johnny@example.com"
- for (Q1062) - data controller (Q96) - not currently checked but it should be, as there may be a general support email as well as a data protection officer specific email address.
- contact page (P282) - "https://company/privacy/contact" - this is necessary where there is no known email address for contacting the data protection officer, only a form. In these cases you probably still need to add e-mail address (P17) but with a dummy email address (and a comment qualifier making clear it is not a real address). The generated email then has to be manually pasted into the contact form for submission.
- collects (P10) - some data points
- official website (P15) - URL (optional really)
- Wikidata item ID (P103) - Qxxx
(Q: how do we refer to privacy policy? there are a few different ways to do it)
Data rights snaks
Multiple choice between different options
References
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 ?link WHERE {
?item pdiot:P110 pdio:Q3006. #P110 <-concerns Q3006 <-ontology model
OPTIONAL {?item pdiot:P15 ?link.}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
LIMIT 100