-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample_ds.ttl
93 lines (67 loc) · 3.5 KB
/
example_ds.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@prefix : <http://example.com/> .
@prefix ex: <http://example.com/> .
@prefix gc: <https://w3id.org/GConsent#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix gdprov: <https://openscience.adaptcentre.ie/ontologies/gdprov/v/gdprov_v0.6.owl#> .
@base <http://example.com/> .
<http://example.com/> rdf:type owl:Ontology ;
owl:imports <https://w3id.org/GConsent> ,
<https://openscience.adaptcentre.ie/ontologies/gdprov/v/gdprov_v0.6.owl> .
#################################################################
# Classes
#################################################################
### http://example.com/AccountInformation
ex:AccountInformation rdf:type owl:Class ;
rdfs:subClassOf gc:PersonalData .
#################################################################
# Individuals
#################################################################
### http://example.com/AccountInformation
ex:AccountInformation rdf:type owl:NamedIndividual ,
gc:PersonalData .
### http://example.com/Advertising
ex:Advertising rdf:type owl:NamedIndividual ,
gc:Purpose .
### http://example.com/Consent1
ex:Consent1 rdf:type owl:NamedIndividual ,
gc:Consent ;
gc:atLocation ex:locationRegistrationFormOnline ;
gc:atTime ex:time201811161600 ;
gc:forPersonalData ex:AccountInformation ;
gc:forProcessing gc:CollectionOfPersonalData ,
gc:StorageOfPersonalData ,
gc:UseOfPersonalData ;
gc:forPurpose ex:Advertising ;
gc:hasExpiry ex:time201912312359 ;
gc:hasStatus gc:ConsentStatusExplicitlyGiven ;
gc:inMedium ex:WebFormHTML ;
gc:isConsentForDataSubject ex:DataSubject ;
gc:isProvidedByPerson ex:DataSubject .
### http://example.com/ConsentGet201811161600
ex:ConsentGet201811161600 rdf:type owl:NamedIndividual ,
<http://purl.org/adaptcentre/openscience/ontologies/gdprov#AcquireConsentActivity> ;
<http://www.w3.org/ns/prov#generated> ex:Consent1 ;
<http://www.w3.org/ns/prov#used> ex:formRegistration .
### http://example.com/DataSubject
ex:DataSubject rdf:type owl:NamedIndividual ,
gc:DataSubject .
### http://example.com/WebFormHTML
ex:WebFormHTML rdf:type owl:NamedIndividual ,
gc:Medium .
### http://example.com/formRegistration
ex:formRegistration rdf:type owl:NamedIndividual ,
<http://www.w3.org/ns/prov#Entity> .
### http://example.com/locationRegistrationFormOnline
ex:locationRegistrationFormOnline rdf:type owl:NamedIndividual ,
<http://www.w3.org/ns/prov#Location> .
### http://example.com/time201811161600
ex:time201811161600 rdf:type owl:NamedIndividual ,
<http://www.w3.org/2006/time#Instant> .
### http://example.com/time201912312359
ex:time201912312359 rdf:type owl:NamedIndividual ,
<http://www.w3.org/2006/time#Instant> .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi