-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
405 lines (352 loc) · 15.4 KB
/
404.html
File metadata and controls
405 lines (352 loc) · 15.4 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>404 - Resource Not Found</title>
<link rel="icon" type="image/x-icon" href="https://w3id.org/dpv/diagrams/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="https://w3id.org/dpv/diagrams/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://w3id.org/dpv/diagrams/favicon-16x16.png">
<style>
:root {
--bg: #ffffff;
--fg: #0b0b0b;
--muted: #6b7280;
--accent: #0b66c3;
--gap: 1rem;
--max-width: 1100px;
}
html,
body {
height: 100%;
margin: 0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body {
background: var(--bg);
color: var(--fg);
}
main {
font-size: 1rem;
}
a {
color: var(--accent)
}
a:focus {
outline: 3px solid rgba(11, 102, 195, 0.18);
outline-offset: 3px
}
.site {
max-width: var(--max-width);
margin: 1.25rem auto;
padding: 1rem;
}
header {
display: flex;
gap: 1rem;
align-items: center;
margin-bottom: 1rem;
}
header h1 {
margin: 0 0 0.5rem 0;
line-height: 1.05;
}
.logo img {
border-radius: 8px;
display: block
}
.search {
margin-left: auto;
display: flex;
align-items: center;
gap: .5rem;
}
.search-link {
color: var(--accent);
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
gap: .4rem;
}
.search-icon {
display: inline-flex;
align-items: center;
justify-content: center;
line-height: 1;
font-size: 0.8rem;
}
.search-text {
font-size: 1rem;
}
.lead {
margin: 0;
color: var(--muted)
}
.announce {
background: linear-gradient(180deg, #ffd5e9, #fed6d6);
border: 1px solid #fea058;
padding: 0.75rem 1rem;
border-radius: 8px;
margin-bottom: 1rem;
color: var(--fg);
text-align: center
}
.announce p {
margin: 0;
font-size: 1rem;
}
.announce a {
color: var(--accent);
font-weight: 600
}
.row-title {
margin: 0 0 .5rem 0;
font-size: 1.2rem
}
/* specs row - normative: subtle green */
.specs-row {
background: linear-gradient(180deg, #f4fbf5, #eef9ee);
padding: 1rem;
border-radius: 10px;
margin-bottom: 1rem
}
/* info row - informative: subtle orange */
.info-row {
background: linear-gradient(180deg, #fff8f0, #fff2e6);
padding: 1rem;
border-radius: 10px
}
.specs-grid,
.info-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--gap)
}
.card {
background: #ffffff;
padding: 0.75rem;
border-radius: 8px;
border: 1px solid rgba(15, 23, 42, 0.06);
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
transition: box-shadow .15s ease, transform .08s ease;
}
.card h3 {
margin: .25rem 0 .5rem 0
}
.card:hover,
.card:focus-within {
box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
transform: translateY(-2px);
}
.card a {
text-decoration: none
}
.card-lead {
margin: 0 0 0.5rem 0;
color: var(--muted);
font-size: 1rem;
}
.links {
margin: 0;
padding-left: 1.25rem
}
footer {
margin-top: 1.5rem;
color: var(--muted);
font-size: 0.9rem;
}
footer dl {
display: grid;
grid-template-columns: 200px 1fr;
gap: 0.25rem 1rem;
align-items: start;
margin: 0;
padding: 0;
}
footer dt {
font-weight: 600;
text-align: right;
margin: 0;
padding-right: 0.5rem;
}
footer dd {
white-space: normal;
word-break: break-word;
margin: 0 0 .25rem 0;
}
@media (max-width:900px) {
.specs-grid,
.info-grid {
grid-template-columns: repeat(2, 1fr)
}
}
@media (max-width:640px) {
.specs-grid,
.info-grid {
grid-template-columns: 1fr
}
.footer-list {
grid-template-columns: 1fr;
}
.footer-list dt {
text-align: left;
padding-right: 0;
margin-top: 0.25rem;
}
}
</style>
</head>
<body>
<div class="site">
<header>
<div class="logo">
<img src="https://w3id.org/dpv/diagrams/logo.png" alt="DPV logo" height="80" width="80" />
</div>
<div>
<h1 id="page-title">404 - Error: Resource Not Found</h1>
<p class="lead">W3C Data Privacy Vocabularies and Controls Group</p>
</p>
</div>
<div class="search">
<!-- Search link: keep update the URL to the latest version -->
<a href="https://w3id.org/dpv/2.3/search" class="search-link" aria-label="DPV search index">
<span class="search-icon" aria-hidden="true">🔍</span>
<span class="search-text">DPV search index</span>
</a>
</div>
</header>
<!-- When announce new DPV version, don't forget to update the search link above -->
<section class="announce" aria-label="Announcement">
<p><strong>DPV — Version 2.3</strong>
(25 February 2026) — the latest specifications are available at
<a href="https://w3id.org/dpv">https://w3id.org/dpv</a>
</p>
</section>
<section>
<p><strong>Contact & help:</strong>
<a href="https://github.com/w3c/dpv/issues">Open an issue on GitHub</a> or ask on the
<a href="https://lists.w3.org/Archives/Public/public-dpvcg/">public mailing list</a>.
</p>
</section>
<main aria-labelledby="page-title">
<section class="specs-row" aria-labelledby="specsRowTitle">
<h2 id="specsRowTitle" class="row-title">Specifications</h2>
<div class="specs-grid">
<article class="card" aria-labelledby="specs-core-title">
<h3 id="specs-core-title">Core</h3>
<ul class="links">
<li><a href="https://w3id.org/dpv">Data Privacy Vocabulary (DPV)</a></li>
</ul>
<h3 id="specs-extensions-title">General-purpose extensions</h3>
<ul class="links">
<li><a href="https://w3id.org/dpv/pd">PD (Personal Data categories)</a></li>
<li><a href="https://w3id.org/dpv/loc">LOC (Locations)</a></li>
<li><a href="https://w3id.org/dpv/tech">TECH (Technologies)</a></li>
<li><a href="https://w3id.org/dpv/ai">AI (AI Technologies)</a></li>
<li><a href="https://w3id.org/dpv/justifications">JUST (Justifications)</a></li>
<li><a href="https://w3id.org/dpv/risk">RISK (Risk Management)</a></li>
</ul>
</article>
<article class="card" aria-labelledby="specs-sector-title">
<h3 id="specs-sector-title">Sector-specific extensions</h3>
<p class="card-lead">Provide concepts extending the DPV for a specific sector.</p>
<ul class="links">
<li><a href="https://w3id.org/dpv/sector/education">Education</a></li>
<li><a href="https://w3id.org/dpv/sector/finance">Finance</a></li>
<li><a href="https://w3id.org/dpv/sector/health">Health</a></li>
<li><a href="https://w3id.org/dpv/sector/infra">Critical infrastructure</a></li>
<li><a href="https://w3id.org/dpv/sector/law">Law enforcement & justice</a></li>
<li><a href="https://w3id.org/dpv/sector">See more in SECTOR</a></li>
</ul>
</article>
<article class="card" aria-labelledby="specs-legal-title">
<h3 id="specs-legal-title">Legal / jurisdiction extensions</h3>
<p class="card-lead">Extends the DPV to represent legal concepts in 40+ jurisdictions.</p>
<ul class="links">
<li><a href="https://w3id.org/dpv/legal/eu">European Union (EU)</a>
-- with laws
<a href="https://w3id.org/dpv/legal/eu/gdpr">GDPR</a>,
<a href="https://w3id.org/dpv/legal/eu/dga">DGA</a>,
<a href="https://w3id.org/dpv/legal/eu/ehds">EHDS</a>,
<a href="https://w3id.org/dpv/legal/eu/aiact">AI Act</a>,
<a href="https://w3id.org/dpv/legal/eu/rights">Charter of Fundamental Rights</a>
</li>
<li><a href="https://w3id.org/dpv/legal/in">India</a></li>
<li><a href="https://w3id.org/dpv/legal/us">United States</a></li>
<li><a href="https://w3id.org/dpv/legal">See more in LEGAL</a></li>
</ul>
</article>
</div>
</section>
<section class="info-row" aria-labelledby="usingRowTitle">
<h2 id="usingRowTitle" class="row-title">Using and improving DPV</h2>
<div class="info-grid">
<article class="card" aria-labelledby="guides-title">
<h3 id="guides-title">Guides & examples</h3>
<p class="card-lead">Introductory material, adoption guides and examples.</p>
<ul class="links">
<li><a href="https://w3id.org/dpv/primer">Primer</a> — learn the core concepts</li>
<li><a href="https://w3id.org/dpv/primer/concise">Concise primer (2‑page)</a></li>
<li><a href="https://w3id.org/dpv/guides">Guides</a>
<ul class="links" aria-label="Guides for using DPV">
<li><a href="https://w3id.org/dpv/guides/dpv-owl">Using DPV in OWL2</a></li>
<li><a href="https://w3id.org/dpv/guides/consent-27560">Implementing ISO/IEC
27560:2023 Consent Records and Receipts</a></li>
</ul>
</li>
<li><a href="https://w3id.org/dpv/examples">Examples</a></li>
</ul>
</article>
<article class="card" aria-labelledby="publications-title">
<h3 id="publications-title">Key publications</h3>
<p class="card-lead">Understand the foundations and design of DPV.</p>
<ul class="links">
<li itemscope itemtype="https://schema.org/ScholarlyArticle"
itemid="https://doi.org/10.1007/978-3-031-77847-6_10">
<a href="https://doi.org/10.1007/978-3-031-77847-6_10" itemprop="url name">Data Privacy
Vocabulary (DPV) — Version 2.0 (2024)</a>
</li>
<li itemscope itemtype="https://schema.org/ScholarlyArticle"
itemid="https://doi.org/10.1007/978-3-030-33246-4_44">
<a href="https://doi.org/10.1007/978-3-030-33246-4_44" itemprop="url name">Creating
a Vocabulary for Data Privacy (2019)</a>
</li>
</ul>
</article>
<article class="card" aria-labelledby="project-title">
<h3 id="project-title">Project & contributions</h3>
<p class="card-lead">How to participate, contribution guidelines, meetings and releases.</p>
<ul class="links">
<li><a href="https://github.com/w3c/dpv">GitHub repository</a></li>
<li><a href="https://github.com/w3c/dpv/wiki/Contribution-Guide">Contribution guide</a>
</li>
<li><a href="https://w3id.org/dpv/use-cases">Use‑cases and requirements</a> that
led to the development of DPV</li>
<li><a href="https://www.w3.org/community/dpvcg/">W3C DPVCG community group</a></li>
<li><a href="https://w3id.org/dpv/meetings">Meeting calendar and minutes</a></li>
</ul>
</article>
</div>
</section>
</main>
<footer>
<p><strong>Funding acknowledgements:</strong>
<span>
The DPVCG was established as part of the <a href="https://specialprivacy.ercim.eu/">SPECIAL H2020 Project</a>, which received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No. 731601 from 2017 to 2019. Further funding acknowledgements for individual members are provided within relevant documents. Continued maintenance is funded under: <a href="https://recitals-project.eu/">RECITALS project</a> under EU's Horizon program grant no 101168490.
</span>
</p>
<p><strong>Licence:</strong>
<span>Work by <a href="https://www.w3.org/community/dpvcg/participants">DPVCG
contributors</a> is released under the
<a href="https://www.w3.org/copyright/software-license-2023/">W3C Software and document
license - 2023 version</a>. See <a href="LICENSE.md">LICENSE.md</a> for details.
</span>
</p>
<p><strong>Website last updated:</strong>
<span><time datetime="2026-01-28">28 January 2026</time></span>
</p>
</footer>
</div>
</body>
</html>