-
Notifications
You must be signed in to change notification settings - Fork 2
/
snapshot.html
7188 lines (6788 loc) · 331 KB
/
snapshot.html
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="nl"><head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<meta name="generator" content="ReSpec 34.1.4">
<style>
span.example-title{text-transform:none}
:is(aside,div).example,div.illegal-example{padding:.5em;margin:1em 0;position:relative;clear:both}
div.illegal-example{color:red}
div.illegal-example p{color:#000}
:is(aside,div).example{border-left-width:.5em;border-left-style:solid;border-color:#e0cb52;background:#fcfaee}
aside.example div.example{border-left-width:.1em;border-color:#999;background:#fff}
.example pre{background-color:rgba(0,0,0,.03)}
</style>
<style>
.issue-label{text-transform:initial}
.warning>p:first-child{margin-top:0}
.warning{padding:.5em;border-left-width:.5em;border-left-style:solid}
span.warning{padding:.1em .5em .15em}
.issue.closed span.issue-number{text-decoration:line-through}
.issue.closed span.issue-number::after{content:" (Closed)";font-size:smaller}
.warning{border-color:#f11;border-width:.2em;border-style:solid;background:#fbe9e9}
.warning-title:before{content:"⚠";font-size:1.3em;float:left;padding-right:.3em;margin-top:-.3em}
li.task-list-item{list-style:none}
input.task-list-item-checkbox{margin:0 .35em .25em -1.6em;vertical-align:middle}
.issue a.respec-gh-label{padding:5px;margin:0 2px 0 2px;font-size:10px;text-transform:none;text-decoration:none;font-weight:700;border-radius:4px;position:relative;bottom:2px;border:none;display:inline-block}
</style>
<style>
dfn{cursor:pointer}
.dfn-panel{position:absolute;z-index:35;min-width:300px;max-width:500px;padding:.5em .75em;margin-top:.6em;font-family:"Helvetica Neue",sans-serif;font-size:small;background:#fff;color:#000;box-shadow:0 1em 3em -.4em rgba(0,0,0,.3),0 0 1px 1px rgba(0,0,0,.05);border-radius:2px}
.dfn-panel:not(.docked)>.caret{position:absolute;top:-9px}
.dfn-panel:not(.docked)>.caret::after,.dfn-panel:not(.docked)>.caret::before{content:"";position:absolute;border:10px solid transparent;border-top:0;border-bottom:10px solid #fff;top:0}
.dfn-panel:not(.docked)>.caret::before{border-bottom:9px solid #a2a9b1}
.dfn-panel *{margin:0}
.dfn-panel b{display:block;color:#000;margin-top:.25em}
.dfn-panel ul a[href]{color:#333}
.dfn-panel>div{display:flex}
.dfn-panel a.self-link{font-weight:700;margin-right:auto}
.dfn-panel .marker{padding:.1em;margin-left:.5em;border-radius:.2em;text-align:center;white-space:nowrap;font-size:90%;color:#040b1c}
.dfn-panel .marker.dfn-exported{background:#d1edfd;box-shadow:0 0 0 .125em #1ca5f940}
.dfn-panel .marker.idl-block{background:#8ccbf2;box-shadow:0 0 0 .125em #0670b161}
.dfn-panel a:not(:hover){text-decoration:none!important;border-bottom:none!important}
.dfn-panel a[href]:hover{border-bottom-width:1px}
.dfn-panel ul{padding:0}
.dfn-panel li{margin-left:1em}
.dfn-panel.docked{position:fixed;left:.5em;top:unset;bottom:2em;margin:0 auto;max-width:calc(100vw - .75em * 2 - .5em - .2em * 2);max-height:30vh;overflow:auto}
</style>
<style id="respec-mainstyle">
@keyframes pop{
0%{transform:scale(1,1)}
25%{transform:scale(1.25,1.25);opacity:.75}
100%{transform:scale(1,1)}
}
:is(h1,h2,h3,h4,h5,h6,a) abbr{border:none}
dfn{font-weight:700}
a.internalDFN{color:inherit;border-bottom:1px solid #99c;text-decoration:none}
a.externalDFN{color:inherit;border-bottom:1px dotted #ccc;text-decoration:none}
a.bibref{text-decoration:none}
.respec-offending-element:target{animation:pop .25s ease-in-out 0s 1}
.respec-offending-element,a[href].respec-offending-element{text-decoration:red wavy underline}
@supports not (text-decoration:red wavy underline){
.respec-offending-element:not(pre){display:inline-block}
.respec-offending-element{background:url(data:image/gif;base64,R0lGODdhBAADAPEAANv///8AAP///wAAACwAAAAABAADAEACBZQjmIAFADs=) bottom repeat-x}
}
#references :target{background:#eaf3ff;animation:pop .4s ease-in-out 0s 1}
cite .bibref{font-style:normal}
a[href].orcid{padding-left:4px;padding-right:4px}
a[href].orcid>svg{margin-bottom:-2px}
.toc a,.tof a{text-decoration:none}
a .figno,a .secno{color:#000}
ol.tof,ul.tof{list-style:none outside none}
.caption{margin-top:.5em;font-style:italic}
table.simple{border-spacing:0;border-collapse:collapse;border-bottom:3px solid #005a9c}
.simple th{background:#005a9c;color:#fff;padding:3px 5px;text-align:left}
.simple th a{color:#fff;padding:3px 5px;text-align:left}
.simple th[scope=row]{background:inherit;color:inherit;border-top:1px solid #ddd}
.simple td{padding:3px 10px;border-top:1px solid #ddd}
.simple tr:nth-child(even){background:#f0f6ff}
.section dd>p:first-child{margin-top:0}
.section dd>p:last-child{margin-bottom:0}
.section dd{margin-bottom:1em}
.section dl.attrs dd,.section dl.eldef dd{margin-bottom:0}
#issue-summary>ul{column-count:2}
#issue-summary li{list-style:none;display:inline-block}
details.respec-tests-details{margin-left:1em;display:inline-block;vertical-align:top}
details.respec-tests-details>*{padding-right:2em}
details.respec-tests-details[open]{z-index:999999;position:absolute;border:thin solid #cad3e2;border-radius:.3em;background-color:#fff;padding-bottom:.5em}
details.respec-tests-details[open]>summary{border-bottom:thin solid #cad3e2;padding-left:1em;margin-bottom:1em;line-height:2em}
details.respec-tests-details>ul{width:100%;margin-top:-.3em}
details.respec-tests-details>li{padding-left:1em}
.self-link:hover{opacity:1;text-decoration:none;background-color:transparent}
aside.example .marker>a.self-link{color:inherit}
.header-wrapper{display:flex;align-items:baseline;position:relative;left:-.5em}
:is(h2,h3,h4,h5,h6):not(#toch2)+a.self-link{color:inherit;order:-1;position:relative;left:-.7em;font-size:1rem;opacity:.5}
:is(h2,h3,h4,h5,h6)+a.self-link::before{content:"§";text-decoration:none;color:var(--heading-text)}
:is(h2,h3)+a.self-link{top:-.2em}
:is(h4,h5,h6)+a.self-link::before{color:#000}
@media (max-width:767px){
dd{margin-left:0}
}
@media print{
.removeOnSave{display:none}
}
</style>
<link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/publication/domain/dcat/Geonovum.ico">
<link rel="stylesheet" type="text/css" href="https://tools.geostandaarden.nl/publication/domain/dcat/style.css">
<title>DCAT-AP-NL 3.0</title>
<style id="respec-nlgov">
img.license{float:left;padding-right:5px}
</style>
<meta name="description" content="Geonovum ontwikkelt en beheert de Nederlandse metadata profielen. Deze profielen zijn een verbijzondering van de internationale metadata standaarden van ISO en DCAT en zijn bedoeld om de interoperabiliteit binnen Nederland te bevorderen.
Dit document beschrijft de verdere specificatie van het toepassingsprofiel van [DCAT-AP-3.0] van de EU voor uitwisseling tussen gegevenscatalogi in Nederland. Het is een doorontwikkeling van [DCAT-AP-DONL-2.0].
Ten behoeve van de Europese High Value Dataset is de "usage guidelines of [DCAT-AP-HVD]" opgezet, als aanvulling op [DCAT-AP-2.1.1] . De vereisten uit de "usage guidelines of [DCAT-AP-HVD]" zijn opgenomen in dit Nederlandse profiel, zodat door te voldoen aan het Nederlandse profiel tevens aan de Europese vereisten voor Open data en High-Value Datasets kan worden voldaan.
Dit profiel wordt aangeboden voor opname op de Pas-toe-of-leg-uit-lijst van het College Standaardisatie.
Het Nederlandse profiel voor DCAT is niet statisch. Dit document wordt daarom onder beheer gebracht om wijzigingen naar behoefte en op basis van voorstellen gestructureerd door te voeren. Geonovum, als voorgestelde beherende instantie, zal de wijzigingen registreren.">
<style>
.hljs{display:block;overflow-x:auto;padding:.5em;color:#383a42;background:#fafafa}
.hljs-comment,.hljs-quote{color:#717277;font-style:italic}
.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4}
.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#ca4706;font-weight:700}
.hljs-literal{color:#0b76c5}
.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#42803c}
.hljs-built_in,.hljs-class .hljs-title{color:#9a6a01}
.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801}
.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#336ae3}
.hljs-emphasis{font-style:italic}
.hljs-strong{font-weight:700}
.hljs-link{text-decoration:underline}
</style>
<style>
.sidelabel {
position: fixed;
-webkit-transform-origin: top right;
right: 100%;
top: 0;
-webkit-transform: rotate(-90deg);
padding: 4px 50px 4px 10px;
color: white;
white-space: nowrap;
z-index: 1;
background-color: #045D9F;
}
</style>
<script type="text/javascript">
/* Any custom mermaid.js scripts will go here. */
</script>
<style>
/* Any custom mermaid.js scripts will go here. */
}
</style>
<script id="initialUserConfig" type="application/json">{
"nl_organisationName": "Geonovum",
"nl_organisationPublishURL": "https://docs.geostandaarden.nl/",
"postProcess": [
null
],
"specStatusText": {
"en": {
"geen": "None",
"basis": "Document",
"cv": "Candidate recommendation",
"def": "Recommendation",
"vv": "Proposed recommendation",
"wv": "Editor’s draft"
},
"nl": {
"geen": "Geen",
"basis": "Document",
"cv": "Consultatieversie",
"def": "Vastgestelde versie",
"vv": "Versie ter vaststelling",
"wv": "Werkversie"
}
},
"labelColor": {
"geen": "#000000",
"basis": "#80CC28",
"cv": "#045D9F",
"def": "#045D9F",
"vv": "#045D9F",
"wv": "#FF0000"
},
"specTypeText": {
"en": {
"geen": "None",
"no": "Norm",
"st": "Standard",
"im": "Information model",
"pr": "Guideline",
"hr": "Guide",
"wa": "Working arrangement",
"al": "General",
"bd": "Governance documentation",
"bp": "Best practice"
},
"nl": {
"geen": "Geen",
"no": "Norm",
"st": "Standaard",
"im": "Informatiemodel",
"pr": "Praktijkrichtlijn",
"hr": "Handreiking",
"wa": "Werkafspraak",
"al": "Algemeen",
"bd": "Beheerdocumentatie",
"bp": "Best practice"
}
},
"licenses": {
"geen": {
"name": "Geen"
},
"cc0": {
"name": "Creative Commons 0 Public Domain Dedication",
"short": "CC0",
"url": "https://creativecommons.org/publicdomain/zero/1.0/",
"image": "https://tools.geostandaarden.nl/publication/organisation/geonovum/cc-zero.svg"
},
"cc-by": {
"name": "Creative Commons Attribution 4.0 International Public License",
"short": "CC-BY",
"url": "https://creativecommons.org/licenses/by/4.0/legalcode",
"image": "https://tools.geostandaarden.nl/publication/organisation/geonovum/cc-by.svg"
},
"cc-by-nd": {
"name": "Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal",
"short": "CC-BY-ND",
"url": "https://creativecommons.org/licenses/by-nd/4.0/legalcode.nl",
"image": "https://tools.geostandaarden.nl/publication/organisation/geonovum/cc-by-nd.svg"
}
},
"nl_organisationStylesURL": "https://tools.geostandaarden.nl/publication/domain/dcat/",
"logos": [
{
"src": "https://tools.geostandaarden.nl/publication/domain/dcat/Geonovum.svg",
"alt": "Geonovum",
"id": "geonovum",
"height": "67",
"width": "132",
"url": "https://www.geonovum.nl/geo-standaarden",
"ico": "https://tools.geostandaarden.nl/publication/domain/dcat/Geonovum.ico"
}
],
"useLogo": true,
"useLabel": true,
"addSectionLinks": false,
"sotdText": {
"en": {
"sotd": "Status of This Document",
"geen": "None",
"basis": "This document has no official standing.",
"cv": "This is a proposed recommendation approved by TO. Comments regarding this document may be sent to [address].",
"def": "This is the definitive version of this document. Edits resulting from consultations have been applied.",
"vv": "This is the definitive concept of this document. Edits resulting from consultations have been applied.",
"wv": "This is a draft that could be altered, removed or replaced by other documents. It is not a recommendation approved by TO."
},
"nl": {
"sotd": "Status van dit document",
"geen": "Geen",
"basis": "Dit is een document zonder officiële status.",
"cv": "Dit is een door het TO goedgekeurde consultatieversie. Commentaar over dit document kan gestuurd worden naar [adres].",
"def": "Dit is de definitieve versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"vv": "Dit is een definitief concept van de nieuwe versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"wv": "Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen door het TO goedgekeurde consultatieversie."
}
},
"title": "DCAT-AP-NL 3.0",
"shortName": "DCAT-AP-NL30",
"pubDomain": "dcat",
"specStatus": "cv",
"specType": "st",
"license": "cc-by-nd",
"latestVersion": [
"https://docs.geostandaarden.nl/dcat/dcat-ap-nl30/"
],
"publishDate": "2024-04-16",
"previousPublishDate": "2024-03-05",
"previousMaturity": "cv",
"edDraftURI": "https://geonovum.github.io/DCAT-AP-NL30/",
"authors": [
{
"name": "Jan Skornsek",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl/"
},
{
"name": "Ine de Visser",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl/"
}
],
"editors": [
{
"name": "Ine de Visser",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl/"
}
],
"localBiblio": {
"DONL": {
"title": "data.overheid.nl",
"href": "https://data.overheid.nl/",
"authors": "",
"publisher": "Kennis- en exploitatiecentrum voor Officiële Overheidspublicaties",
"editors": "",
"date": "",
"status": ""
},
"DATA_EU": {
"title": "data.europa.eu",
"href": "https://data.europa.eu/en",
"authors": "",
"publisher": "The Publications Office of the European Union",
"editors": "",
"date": "",
"status": ""
},
"DCAT-2.0": {
"title": "DCAT-2.0",
"href": "https://www.w3.org/TR/vocab-dcat-2",
"authors": [
"Riccardo Albertoni; David Browning; Simon Cox; Alejandra Gonzalez Beltran; Andrea Perego; Peter Winstanley"
],
"publisher": "W3C",
"editors": "",
"date": "2020-02-04",
"status": "Recommendation"
},
"DCAT-AP-2.1.1": {
"title": "DCAT-AP 2.1.1",
"href": "https://joinup.ec.europa.eu/collection/semantic-interoperability-community-semic/solution/dcat-application-profile-data-portals-europe/release/210",
"authors": "",
"publisher": "The Publications Office of the European Union",
"editors": "",
"date": "",
"status": "",
"id": "dcat-ap-2.1.1"
},
"DCATAPDONL_11": {
"title": "DCAT-AP-DONL 1.1",
"href": "https://dcat-ap-donl.readthedocs.io/en/latest/",
"authors": "",
"publisher": "Kennis- en exploitatiecentrum voor Officiële Overheidspublicaties",
"editors": "",
"date": "",
"status": ""
},
"GEONAMES": {
"title": "GeoNames.org",
"href": "https://www.geonames.org/",
"authors": "",
"publisher": "",
"editors": "",
"date": "",
"status": ""
},
"ISO8601": {
"title": "ISO-8601",
"href": "https://www.iso.org/iso-8601-date-and-time-format.html",
"authors": "",
"publisher": "International Organization for Standardization",
"editors": "",
"date": "",
"status": "",
"id": "iso8601"
},
"ISO19115_ROLECODE": {
"title": "ISO-19115 RoleCode",
"href": "https://standards.iso.org/iso/19115/resources/Codelists/gml/CI_RoleCode.xml",
"authors": "",
"publisher": "International Organization for Standardization",
"editors": "",
"date": "",
"status": "",
"id": "iso19115_rolecode"
},
"OWMS_TAXONOMIEBELEIDSAGENDA": {
"title": "overheid:TaxonomieBeleidsagenda (standaarden.overheid.nl)",
"href": "https://standaarden.overheid.nl/owms/4.0/doc/waardelijsten/overheid.taxonomiebeleidsagenda",
"authors": "",
"publisher": "Kennis- en exploitatiecentrum voor Officiële Overheidspublicaties",
"editors": "",
"date": "",
"status": ""
},
"TOOI": {
"title": "TOOI - Thesaurus en Ontologie Overheidsinformatie",
"href": "https://tardis.overheid.nl",
"authors": "",
"publisher": "Kennis- en exploitatiecentrum voor Officiële Overheidspublicaties",
"editors": "",
"date": "",
"status": ""
},
"DCAT-3.0": {
"title": "DCAT-3.0",
"href": "https://www.w3.org/TR/vocab-dcat-3/",
"authors": "",
"publisher": "W3C",
"editors": "",
"date": "",
"status": "Candidate Recommendation",
"id": "dcat-3.0"
},
"DCAT-AP-3.0": {
"title": "DCAT-AP-3.0",
"href": "https://semiceu.github.io//DCAT-AP/releases/3.0.0/",
"authors": "",
"publisher": "SEMIC",
"editors": "",
"date": "2024-02-12",
"status": "Candidate Recommendation",
"id": "dcat-ap-3.0"
},
"DCAT-AP-HVD": {
"title": "DCAT-AP for High-Value Datasets",
"href": "https://semiceu.github.io/uri.semic.eu-generated/DCAT-AP/releases/2.2.0-hvd/",
"authors": "",
"publisher": "SEMIC",
"editors": "",
"date": "",
"status": "",
"id": "dcat-ap-hvd"
},
"ODRL": {
"title": "ODLR",
"href": "https://www.w3.org/ns/odrl/2/",
"authors": "",
"publisher": "W3C",
"editors": "",
"date": "",
"status": "",
"id": "odrl"
},
"DCAT-AP-DONL-2.0": {
"title": "DCAT-AP-DONL-2.0",
"href": "https://dataoverheid.github.io/dcat-ap-donl/",
"authors": [
"Jan Meijer",
"Huub van Oers",
"Kees Trautwein"
],
"publisher": "data.overheid.nl",
"editors": [
"Casper le Gras",
"Willem ter Berg",
""
],
"date": "2022-11-24",
"status": "",
"id": "dcat-ap-donl-2.0"
},
"RFC2119": {
"title": "rfc2119",
"href": "https://www.rfc-editor.org/rfc/rfc2119",
"authors": [
"S. Bradner"
],
"publisher": "IETF",
"editors": "",
"date": "1997-03-01",
"status": "",
"id": "rfc2119"
},
"RFC8174": {
"title": "rfc8174",
"href": "https://www.rfc-editor.org/rfc/rfc5646",
"authors": [
"B. Leiba"
],
"publisher": "IETF",
"editors": "",
"date": "2009-09-01",
"status": "",
"id": "rfc8174"
},
"ISO-19115": {
"title": "ISO-19115",
"href": "https://www.iso.org/standard/53798.html",
"authors": "",
"publisher": "",
"editors": "",
"date": "2014-04-01",
"status": "International Standard confirmed"
},
"OpenAPI": {
"title": "OpenAPI",
"href": "https://www.openapis.org/",
"authors": [
"Darrell Miller; Jeremy Whitlock; Marsh Gardiner; Mike Ralphson; Ron Ratovsky; Uri Sarid; Tony Tam; Jason Harmon"
],
"publisher": "",
"editors": "",
"date": "",
"status": "",
"id": "openapi"
},
"WFS": {
"title": "WFS",
"href": "http://www.opengeospatial.org/standards/wfs",
"authors": "",
"publisher": "OGC",
"editors": "",
"date": "2014-07-10",
"status": "",
"id": "wfs"
},
"WMS": {
"title": "WMS",
"href": "http://www.opengeospatial.org/standards/wms",
"authors": "",
"publisher": "OGC",
"editors": "",
"date": "2006-03-15",
"status": "OpenGIS Implementation Standard",
"id": "wms"
},
"ISO-19128": {
"title": "ISO-19128",
"href": "https://www.iso.org/standard/32546.html",
"authors": "",
"publisher": "ISO/TC 211. ISO",
"editors": "",
"date": "",
"status": "International Standard"
},
"ISO-19142": {
"title": "ISO-19142",
"href": "https://www.iso.org/standard/42136.html",
"authors": "",
"publisher": "ISO/TC 211",
"editors": "",
"date": "",
"status": "International Standard"
},
"SPARQL11-SERVICE-DESCRIPTION": {
"title": "SPARQL Service Description",
"href": "https://www.w3.org/TR/sparql11-service-description/",
"authors": "",
"publisher": "W3C",
"editors": "",
"date": "2013-03-21",
"status": "",
"id": "sparql11-service-description"
},
"OpenSearch": {
"title": "OpenSearch",
"href": "https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md",
"authors": "",
"publisher": "OpenSearch",
"editors": "",
"date": "2018-04-17",
"status": "",
"id": "opensearch"
}
},
"preProcess": [
null
]
}</script>
<link rel="stylesheet" href="https://tools.geostandaarden.nl/publication/domain/dcat/base.css"></head>
<body class="h-entry"><div class="head">
<a class="logo" href="https://www.geonovum.nl/geo-standaarden"><img alt="Geonovum" height="67" id="geonovum" src="https://tools.geostandaarden.nl/publication/domain/dcat/Geonovum.svg" width="132">
</a> <h1 id="title" class="title">DCAT-AP-NL 3.0</h1>
<h2>
Geonovum Standaard<br>
Consultatieversie
<time class="dt-published" datetime="2024-04-16">16 april 2024</time>
</h2>
<dl>
<dt>Deze versie:</dt><dd class="status">
<a class="u-url status" href="https://docs.geostandaarden.nl/dcat/cv-st-dcat-ap-nl30-20240416">https://docs.geostandaarden.nl/dcat/cv-st-dcat-ap-nl30-20240416</a>
</dd>
<dt>Laatst gepubliceerde versie:</dt><dd>
<a href="https://docs.geostandaarden.nl/dcat/dcat-ap-nl30/">https://docs.geostandaarden.nl/dcat/dcat-ap-nl30/</a>
</dd>
<dt>Laatste werkversie:</dt><dd><a href="https://geonovum.github.io/DCAT-AP-NL30/">https://geonovum.github.io/DCAT-AP-NL30/</a></dd>
<dt>Redacteur:</dt>
<dd class="editor p-author h-card vcard">
<span class="p-name fn">Ine de Visser</span> (<a class="p-org org h-org" href="https://www.geonovum.nl/">Geonovum</a>)
</dd>
<dt>Auteurs:</dt><dd class="editor p-author h-card vcard">
<span class="p-name fn">Jan Skornsek</span> (<a class="p-org org h-org" href="https://www.geonovum.nl/">Geonovum</a>)
</dd><dd class="editor p-author h-card vcard">
<span class="p-name fn">Ine de Visser</span> (<a class="p-org org h-org" href="https://www.geonovum.nl/">Geonovum</a>)
</dd>
</dl>
<p class="copyright">
Dit document valt onder de volgende licentie:
<a rel="license" href="https://creativecommons.org/licenses/by-nd/4.0/legalcode.nl" class="subfoot"><img class="license" src="https://tools.geostandaarden.nl/publication/organisation/geonovum/cc-by-nd.svg" alt="Logo Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal"><br> Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal</a>
</p>
<hr title="Separator for header">
</div>
<section id="abstract" class="abstract introductory"><h2>Samenvatting</h2><p>Geonovum ontwikkelt en <a href="https://www.geonovum.nl/themas/standaardisatie" target="_blank">beheert</a> de Nederlandse metadata profielen. Deze profielen zijn een verbijzondering van de internationale metadata standaarden van ISO en DCAT en zijn bedoeld om de interoperabiliteit binnen Nederland te bevorderen.
<br>
<br>
Dit document beschrijft de verdere specificatie van het toepassingsprofiel van <a href="https://joinup.ec.europa.eu/collection/semantic-interoperability-community-semic/solution/dcat-application-profile-data-portals-europe/release/210" target="_blank">[<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] </a> van de EU voor uitwisseling tussen gegevenscatalogi in Nederland. Het is een doorontwikkeling van <a href="https://dataoverheid.github.io/dcat-ap-donl/" target="_blank">[<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-donl-2.0" title="DCAT-AP-DONL-2.0">DCAT-AP-DONL-2.0</a></cite>]</a>.
<br>
<br>
Ten behoeve van de Europese High Value Dataset is de "usage guidelines of [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-hvd" title="DCAT-AP for High-Value Datasets">DCAT-AP-HVD</a></cite>]" opgezet, als aanvulling op <a href="https://joinup.ec.europa.eu/collection/semantic-interoperability-community-semic/solution/dcat-application-profile-data-portals-europe/release/210" target="_blank">[<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-2.1.1" title="DCAT-AP 2.1.1">DCAT-AP-2.1.1</a></cite>] </a>. De vereisten uit de "usage guidelines of [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-hvd" title="DCAT-AP for High-Value Datasets">DCAT-AP-HVD</a></cite>]" zijn opgenomen in dit Nederlandse profiel, zodat door te voldoen aan het Nederlandse profiel tevens aan de Europese vereisten voor Open data en High-Value Datasets kan worden voldaan.
<br>
<br>
Dit profiel wordt aangeboden voor opname op de Pas-toe-of-leg-uit-lijst van het College Standaardisatie.
<br>
<br>
Het Nederlandse profiel voor DCAT is niet statisch. Dit document wordt daarom onder beheer gebracht om wijzigingen naar behoefte en op basis van voorstellen gestructureerd door te voeren. Geonovum, als voorgestelde beherende instantie, zal de wijzigingen registreren.</p>
</section>
<section id="sotd" class="introductory"><h2>Status van dit document</h2><p>Dit is een door het TO goedgekeurde consultatieversie. Commentaar over dit document kan gestuurd worden naar [adres].</p></section><nav id="toc"><h2 class="introductory" id="inhoudsopgave">Inhoudsopgave</h2><ol class="toc"><li class="tocline"><a class="tocxref" href="#abstract">Samenvatting</a></li><li class="tocline"><a class="tocxref" href="#sotd">Status van dit document</a></li><li class="tocline"><a class="tocxref" href="#conformance">Conformiteit</a></li><li class="tocline"><a class="tocxref" href="#3F0B9851">Inleiding</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#2536E4CD">Uitgangspunten</a></li><li class="tocline"><a class="tocxref" href="#01CB11A8">Relatie andere profielen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#7001826E"><bdi class="secno">1. </bdi>Termen en definities</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#75461667"><bdi class="secno">1.1 </bdi>Namespaces</a></li></ol></li><li class="tocline"><a class="tocxref" href="#3F9A775E"><bdi class="secno">2. </bdi>Structuur van het toepassingsprofiel</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#09DBB0B1"><bdi class="secno">2.1 </bdi>DCAT als universeel vocabulaire</a></li><li class="tocline"><a class="tocxref" href="#1086A1F8"><bdi class="secno">2.2 </bdi>Overzicht Klassen</a></li><li class="tocline"><a class="tocxref" href="#5679FE7C"><bdi class="secno">2.3 </bdi>Optionaliteit</a></li><li class="tocline"><a class="tocxref" href="#14786F8D"><bdi class="secno">2.4 </bdi>Waardelijsten</a></li><li class="tocline"><a class="tocxref" href="#64A3722D"><bdi class="secno">2.5 </bdi>Omschrijving eigenschappen</a></li><li class="tocline"><a class="tocxref" href="#10B7B8F1"><bdi class="secno">2.6 </bdi>Ondersteuning voor meertaligheid</a></li></ol></li><li class="tocline"><a class="tocxref" href="#klassen"><bdi class="secno">3. </bdi>Klassen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#dataset-dcat-dataset"><bdi class="secno">3.1 </bdi>Dataset - dcat:Dataset</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#dataset-access-rights"><bdi class="secno">3.1.1 </bdi>access rights</a></li><li class="tocline"><a class="tocxref" href="#dataset-applicable-legislation"><bdi class="secno">3.1.2 </bdi>applicable legislation</a></li><li class="tocline"><a class="tocxref" href="#dataset-conforms-to"><bdi class="secno">3.1.3 </bdi>conforms to</a></li><li class="tocline"><a class="tocxref" href="#dataset-contact-point"><bdi class="secno">3.1.4 </bdi>contact point</a></li><li class="tocline"><a class="tocxref" href="#dataset-creator"><bdi class="secno">3.1.5 </bdi>creator</a></li><li class="tocline"><a class="tocxref" href="#dataset-dataset-distribution"><bdi class="secno">3.1.6 </bdi>dataset distribution</a></li><li class="tocline"><a class="tocxref" href="#dataset-description"><bdi class="secno">3.1.7 </bdi>description</a></li><li class="tocline"><a class="tocxref" href="#dataset-documentation"><bdi class="secno">3.1.8 </bdi>documentation</a></li><li class="tocline"><a class="tocxref" href="#dataset-frequency"><bdi class="secno">3.1.9 </bdi>frequency</a></li><li class="tocline"><a class="tocxref" href="#dataset-geographical-coverage"><bdi class="secno">3.1.10 </bdi>geographical coverage</a></li><li class="tocline"><a class="tocxref" href="#dataset-has-version"><bdi class="secno">3.1.11 </bdi>has version</a></li><li class="tocline"><a class="tocxref" href="#dataset-hvd-category"><bdi class="secno">3.1.12 </bdi>HVD Category</a></li><li class="tocline"><a class="tocxref" href="#dataset-identifier"><bdi class="secno">3.1.13 </bdi>identifier</a></li><li class="tocline"><a class="tocxref" href="#dataset-in-series"><bdi class="secno">3.1.14 </bdi>in series</a></li><li class="tocline"><a class="tocxref" href="#dataset-is-referenced-by"><bdi class="secno">3.1.15 </bdi>is referenced by</a></li><li class="tocline"><a class="tocxref" href="#dataset-is-version-of"><bdi class="secno">3.1.16 </bdi>is version of</a></li><li class="tocline"><a class="tocxref" href="#dataset-keyword"><bdi class="secno">3.1.17 </bdi>keyword</a></li><li class="tocline"><a class="tocxref" href="#dataset-landing-page"><bdi class="secno">3.1.18 </bdi>landing page</a></li><li class="tocline"><a class="tocxref" href="#dataset-language"><bdi class="secno">3.1.19 </bdi>language</a></li><li class="tocline"><a class="tocxref" href="#dataset-modification-date"><bdi class="secno">3.1.20 </bdi>modification date</a></li><li class="tocline"><a class="tocxref" href="#dataset-next"><bdi class="secno">3.1.21 </bdi>next</a></li><li class="tocline"><a class="tocxref" href="#dataset-other-identifier"><bdi class="secno">3.1.22 </bdi>other identifier</a></li><li class="tocline"><a class="tocxref" href="#dataset-previous"><bdi class="secno">3.1.23 </bdi>previous</a></li><li class="tocline"><a class="tocxref" href="#dataset-provenance"><bdi class="secno">3.1.24 </bdi>provenance</a></li><li class="tocline"><a class="tocxref" href="#dataset-publisher"><bdi class="secno">3.1.25 </bdi>publisher</a></li><li class="tocline"><a class="tocxref" href="#dataset-qualified-attribution"><bdi class="secno">3.1.26 </bdi>qualified attribution</a></li><li class="tocline"><a class="tocxref" href="#dataset-qualified-relation"><bdi class="secno">3.1.27 </bdi>qualified relation</a></li><li class="tocline"><a class="tocxref" href="#dataset-related-resource"><bdi class="secno">3.1.28 </bdi>related resource</a></li><li class="tocline"><a class="tocxref" href="#dataset-release-date"><bdi class="secno">3.1.29 </bdi>release date</a></li><li class="tocline"><a class="tocxref" href="#dataset-sample"><bdi class="secno">3.1.30 </bdi>sample</a></li><li class="tocline"><a class="tocxref" href="#dataset-source"><bdi class="secno">3.1.31 </bdi>source</a></li><li class="tocline"><a class="tocxref" href="#dataset-spatial-resolution"><bdi class="secno">3.1.32 </bdi>spatial resolution</a></li><li class="tocline"><a class="tocxref" href="#dataset-status"><bdi class="secno">3.1.33 </bdi>status</a></li><li class="tocline"><a class="tocxref" href="#dataset-temporal-coverage"><bdi class="secno">3.1.34 </bdi>temporal coverage</a></li><li class="tocline"><a class="tocxref" href="#dataset-temporal-resolution"><bdi class="secno">3.1.35 </bdi>temporal resolution</a></li><li class="tocline"><a class="tocxref" href="#dataset-theme"><bdi class="secno">3.1.36 </bdi>theme</a></li><li class="tocline"><a class="tocxref" href="#dataset-title"><bdi class="secno">3.1.37 </bdi>title</a></li><li class="tocline"><a class="tocxref" href="#dataset-type"><bdi class="secno">3.1.38 </bdi>type</a></li><li class="tocline"><a class="tocxref" href="#dataset-version"><bdi class="secno">3.1.39 </bdi>version</a></li><li class="tocline"><a class="tocxref" href="#dataset-version-notes"><bdi class="secno">3.1.40 </bdi>version notes</a></li><li class="tocline"><a class="tocxref" href="#dataset-was-generated-by"><bdi class="secno">3.1.41 </bdi>was generated by</a></li><li class="tocline"><a class="tocxref" href="#voorbeelden"><bdi class="secno">3.1.42 </bdi>Voorbeelden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#distribution-dcat-distribution"><bdi class="secno">3.2 </bdi>Distribution - dcat:Distribution</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#distribution-access-service"><bdi class="secno">3.2.1 </bdi>access service</a></li><li class="tocline"><a class="tocxref" href="#distribution-access-url"><bdi class="secno">3.2.2 </bdi>access URL</a></li><li class="tocline"><a class="tocxref" href="#distribution-applicable-legislation"><bdi class="secno">3.2.3 </bdi>applicable legislation</a></li><li class="tocline"><a class="tocxref" href="#distribution-availability"><bdi class="secno">3.2.4 </bdi>availability</a></li><li class="tocline"><a class="tocxref" href="#distribution-byte-size"><bdi class="secno">3.2.5 </bdi>byte size</a></li><li class="tocline"><a class="tocxref" href="#distribution-checksum"><bdi class="secno">3.2.6 </bdi>checksum</a></li><li class="tocline"><a class="tocxref" href="#distribution-compression-format"><bdi class="secno">3.2.7 </bdi>compression format</a></li><li class="tocline"><a class="tocxref" href="#distribution-description"><bdi class="secno">3.2.8 </bdi>description</a></li><li class="tocline"><a class="tocxref" href="#distribution-documentation"><bdi class="secno">3.2.9 </bdi>documentation</a></li><li class="tocline"><a class="tocxref" href="#distribution-download-url"><bdi class="secno">3.2.10 </bdi>download URL</a></li><li class="tocline"><a class="tocxref" href="#distribution-format"><bdi class="secno">3.2.11 </bdi>format</a></li><li class="tocline"><a class="tocxref" href="#distribution-has-policy"><bdi class="secno">3.2.12 </bdi>has policy</a></li><li class="tocline"><a class="tocxref" href="#distribution-language"><bdi class="secno">3.2.13 </bdi>language</a></li><li class="tocline"><a class="tocxref" href="#distribution-licence"><bdi class="secno">3.2.14 </bdi>licence</a></li><li class="tocline"><a class="tocxref" href="#distribution-linked-schemas"><bdi class="secno">3.2.15 </bdi>linked schemas</a></li><li class="tocline"><a class="tocxref" href="#distribution-media-type"><bdi class="secno">3.2.16 </bdi>media type</a></li><li class="tocline"><a class="tocxref" href="#distribution-modification-date"><bdi class="secno">3.2.17 </bdi>modification date</a></li><li class="tocline"><a class="tocxref" href="#distribution-packaging-format"><bdi class="secno">3.2.18 </bdi>packaging format</a></li><li class="tocline"><a class="tocxref" href="#distribution-release-date"><bdi class="secno">3.2.19 </bdi>release date</a></li><li class="tocline"><a class="tocxref" href="#distribution-rights"><bdi class="secno">3.2.20 </bdi>rights</a></li><li class="tocline"><a class="tocxref" href="#distribution-spatial-resolution"><bdi class="secno">3.2.21 </bdi>spatial resolution</a></li><li class="tocline"><a class="tocxref" href="#distribution-status"><bdi class="secno">3.2.22 </bdi>status</a></li><li class="tocline"><a class="tocxref" href="#distribution-temporal-resolution"><bdi class="secno">3.2.23 </bdi>temporal resolution</a></li><li class="tocline"><a class="tocxref" href="#distribution-title"><bdi class="secno">3.2.24 </bdi>title</a></li><li class="tocline"><a class="tocxref" href="#voorbeelden-0"><bdi class="secno">3.2.25 </bdi>Voorbeelden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#dataservice-dcat-dataservice"><bdi class="secno">3.3 </bdi>DataService - dcat:DataService</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#dataservice-access-rights"><bdi class="secno">3.3.1 </bdi>access rights</a></li><li class="tocline"><a class="tocxref" href="#dataservice-applicable-legislation"><bdi class="secno">3.3.2 </bdi>applicable legislation</a></li><li class="tocline"><a class="tocxref" href="#dataservice-application-profile"><bdi class="secno">3.3.3 </bdi>application profile</a></li><li class="tocline"><a class="tocxref" href="#dataservice-contact-point"><bdi class="secno">3.3.4 </bdi>contact point</a></li><li class="tocline"><a class="tocxref" href="#dataservice-creator"><bdi class="secno">3.3.5 </bdi>creator</a></li><li class="tocline"><a class="tocxref" href="#dataservice-description"><bdi class="secno">3.3.6 </bdi>description</a></li><li class="tocline"><a class="tocxref" href="#dataservice-documentation"><bdi class="secno">3.3.7 </bdi>documentation</a></li><li class="tocline"><a class="tocxref" href="#dataservice-endpoint-description"><bdi class="secno">3.3.8 </bdi>endpoint description</a></li><li class="tocline"><a class="tocxref" href="#dataservice-endpoint-url"><bdi class="secno">3.3.9 </bdi>endpoint URL</a></li><li class="tocline"><a class="tocxref" href="#dataservice-format"><bdi class="secno">3.3.10 </bdi>format</a></li><li class="tocline"><a class="tocxref" href="#dataservice-hvd-category"><bdi class="secno">3.3.11 </bdi>HVD Category</a></li><li class="tocline"><a class="tocxref" href="#dataservice-identifier"><bdi class="secno">3.3.12 </bdi>identifier</a></li><li class="tocline"><a class="tocxref" href="#dataservice-keyword"><bdi class="secno">3.3.13 </bdi>keyword</a></li><li class="tocline"><a class="tocxref" href="#dataservice-landing-page"><bdi class="secno">3.3.14 </bdi>landing page</a></li><li class="tocline"><a class="tocxref" href="#dataservice-language"><bdi class="secno">3.3.15 </bdi>language</a></li><li class="tocline"><a class="tocxref" href="#dataservice-licence"><bdi class="secno">3.3.16 </bdi>licence</a></li><li class="tocline"><a class="tocxref" href="#dataservice-modification-date"><bdi class="secno">3.3.17 </bdi>modification date</a></li><li class="tocline"><a class="tocxref" href="#dataservice-other-identifier"><bdi class="secno">3.3.18 </bdi>other identifier</a></li><li class="tocline"><a class="tocxref" href="#dataservice-publisher"><bdi class="secno">3.3.19 </bdi>publisher</a></li><li class="tocline"><a class="tocxref" href="#dataservice-rights"><bdi class="secno">3.3.20 </bdi>rights</a></li><li class="tocline"><a class="tocxref" href="#dataservice-serves-dataset"><bdi class="secno">3.3.21 </bdi>serves dataset</a></li><li class="tocline"><a class="tocxref" href="#dataservice-theme"><bdi class="secno">3.3.22 </bdi>theme</a></li><li class="tocline"><a class="tocxref" href="#dataservice-title"><bdi class="secno">3.3.23 </bdi>title</a></li><li class="tocline"><a class="tocxref" href="#voorbeelden-1"><bdi class="secno">3.3.24 </bdi>Voorbeelden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#catalog-dcat-catalog"><bdi class="secno">3.4 </bdi>Catalog - dcat:Catalog</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#catalog-applicable-legislation"><bdi class="secno">3.4.1 </bdi>applicable legislation</a></li><li class="tocline"><a class="tocxref" href="#catalog-catalogue"><bdi class="secno">3.4.2 </bdi>catalogue</a></li><li class="tocline"><a class="tocxref" href="#catalog-contact-point"><bdi class="secno">3.4.3 </bdi>contact point</a></li><li class="tocline"><a class="tocxref" href="#catalog-creator"><bdi class="secno">3.4.4 </bdi>creator</a></li><li class="tocline"><a class="tocxref" href="#catalog-dataset"><bdi class="secno">3.4.5 </bdi>dataset</a></li><li class="tocline"><a class="tocxref" href="#catalog-description"><bdi class="secno">3.4.6 </bdi>description</a></li><li class="tocline"><a class="tocxref" href="#catalog-geographical-coverage"><bdi class="secno">3.4.7 </bdi>geographical coverage</a></li><li class="tocline"><a class="tocxref" href="#catalog-has-part"><bdi class="secno">3.4.8 </bdi>has part</a></li><li class="tocline"><a class="tocxref" href="#catalog-homepage"><bdi class="secno">3.4.9 </bdi>homepage</a></li><li class="tocline"><a class="tocxref" href="#catalog-is-part-of"><bdi class="secno">3.4.10 </bdi>is part of</a></li><li class="tocline"><a class="tocxref" href="#catalog-language"><bdi class="secno">3.4.11 </bdi>language</a></li><li class="tocline"><a class="tocxref" href="#catalog-licence"><bdi class="secno">3.4.12 </bdi>licence</a></li><li class="tocline"><a class="tocxref" href="#catalog-modification-date"><bdi class="secno">3.4.13 </bdi>modification date</a></li><li class="tocline"><a class="tocxref" href="#catalog-publisher"><bdi class="secno">3.4.14 </bdi>publisher</a></li><li class="tocline"><a class="tocxref" href="#catalog-record"><bdi class="secno">3.4.15 </bdi>record</a></li><li class="tocline"><a class="tocxref" href="#catalog-release-date"><bdi class="secno">3.4.16 </bdi>release date</a></li><li class="tocline"><a class="tocxref" href="#catalog-rights"><bdi class="secno">3.4.17 </bdi>rights</a></li><li class="tocline"><a class="tocxref" href="#catalog-service"><bdi class="secno">3.4.18 </bdi>service</a></li><li class="tocline"><a class="tocxref" href="#catalog-temporal-coverage"><bdi class="secno">3.4.19 </bdi>temporal coverage</a></li><li class="tocline"><a class="tocxref" href="#catalog-themes"><bdi class="secno">3.4.20 </bdi>themes</a></li><li class="tocline"><a class="tocxref" href="#catalog-title"><bdi class="secno">3.4.21 </bdi>title</a></li><li class="tocline"><a class="tocxref" href="#voorbeelden-2"><bdi class="secno">3.4.22 </bdi>Voorbeelden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#catalogrecord-dcat-catalogrecord"><bdi class="secno">3.5 </bdi>CatalogRecord - dcat:CatalogRecord</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#catalogrecord-application-profile"><bdi class="secno">3.5.1 </bdi>application profile</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-change-type"><bdi class="secno">3.5.2 </bdi>change type</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-description"><bdi class="secno">3.5.3 </bdi>description</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-language"><bdi class="secno">3.5.4 </bdi>language</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-listing-date"><bdi class="secno">3.5.5 </bdi>listing date</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-modification-date"><bdi class="secno">3.5.6 </bdi>modification date</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-primary-topic"><bdi class="secno">3.5.7 </bdi>primary topic</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-source-metadata"><bdi class="secno">3.5.8 </bdi>source metadata</a></li><li class="tocline"><a class="tocxref" href="#catalogrecord-title"><bdi class="secno">3.5.9 </bdi>title</a></li><li class="tocline"><a class="tocxref" href="#voorbeelden-3"><bdi class="secno">3.5.10 </bdi>Voorbeelden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#datasetseries-dcat-datasetseries"><bdi class="secno">3.6 </bdi>DatasetSeries - dcat:DatasetSeries</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#datasetseries-applicable-legislation"><bdi class="secno">3.6.1 </bdi>applicable legislation</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-contact-point"><bdi class="secno">3.6.2 </bdi>contact point</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-description"><bdi class="secno">3.6.3 </bdi>description</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-first"><bdi class="secno">3.6.4 </bdi>first</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-frequency"><bdi class="secno">3.6.5 </bdi>frequency</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-geographical-coverage"><bdi class="secno">3.6.6 </bdi>geographical coverage</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-last"><bdi class="secno">3.6.7 </bdi>last</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-modification-date"><bdi class="secno">3.6.8 </bdi>modification date</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-publisher"><bdi class="secno">3.6.9 </bdi>publisher</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-release-date"><bdi class="secno">3.6.10 </bdi>release date</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-series-member"><bdi class="secno">3.6.11 </bdi>series member</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-temporal-coverage"><bdi class="secno">3.6.12 </bdi>temporal coverage</a></li><li class="tocline"><a class="tocxref" href="#datasetseries-title"><bdi class="secno">3.6.13 </bdi>title</a></li><li class="tocline"><a class="tocxref" href="#voorbeelden-4"><bdi class="secno">3.6.14 </bdi>Voorbeelden</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#ondersteunende-klassen"><bdi class="secno">4. </bdi>Ondersteunende Klassen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#agent-foaf-agent"><bdi class="secno">4.1 </bdi>Agent - foaf:Agent</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#name"><bdi class="secno">4.1.1 </bdi>name</a></li><li class="tocline"><a class="tocxref" href="#type-0"><bdi class="secno">4.1.2 </bdi>type</a></li></ol></li><li class="tocline"><a class="tocxref" href="#licensedocument-dct-licensedocument"><bdi class="secno">4.2 </bdi>LicenseDocument - dct:LicenseDocument</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#type-1"><bdi class="secno">4.2.1 </bdi>type</a></li></ol></li><li class="tocline"><a class="tocxref" href="#location-dct-location"><bdi class="secno">4.3 </bdi>Location - dct:Location</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#bbox"><bdi class="secno">4.3.1 </bdi>bbox</a></li><li class="tocline"><a class="tocxref" href="#centroid"><bdi class="secno">4.3.2 </bdi>centroid</a></li><li class="tocline"><a class="tocxref" href="#geometry"><bdi class="secno">4.3.3 </bdi>geometry</a></li></ol></li><li class="tocline"><a class="tocxref" href="#periodoftime-dct-periodoftime"><bdi class="secno">4.4 </bdi>PeriodOfTime - dct:PeriodOfTime</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#beginning"><bdi class="secno">4.4.1 </bdi>beginning</a></li><li class="tocline"><a class="tocxref" href="#end"><bdi class="secno">4.4.2 </bdi>end</a></li><li class="tocline"><a class="tocxref" href="#end-date"><bdi class="secno">4.4.3 </bdi>end date</a></li><li class="tocline"><a class="tocxref" href="#start-date"><bdi class="secno">4.4.4 </bdi>start date</a></li></ol></li><li class="tocline"><a class="tocxref" href="#checksum-spdx-checksum"><bdi class="secno">4.5 </bdi>Checksum - spdx:Checksum</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#algorithm"><bdi class="secno">4.5.1 </bdi>algorithm</a></li><li class="tocline"><a class="tocxref" href="#checksum-value"><bdi class="secno">4.5.2 </bdi>checksum value</a></li></ol></li><li class="tocline"><a class="tocxref" href="#identifier-adms-identifier"><bdi class="secno">4.6 </bdi>Identifier - adms:Identifier</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#notation"><bdi class="secno">4.6.1 </bdi>notation</a></li></ol></li><li class="tocline"><a class="tocxref" href="#relationship-dcat-relationship"><bdi class="secno">4.7 </bdi>Relationship - dcat:Relationship</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#had-role"><bdi class="secno">4.7.1 </bdi>had role</a></li><li class="tocline"><a class="tocxref" href="#relation"><bdi class="secno">4.7.2 </bdi>relation</a></li></ol></li><li class="tocline"><a class="tocxref" href="#concept-skos-concept"><bdi class="secno">4.8 </bdi>Concept - skos:Concept</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#preferred-label"><bdi class="secno">4.8.1 </bdi>preferred label</a></li></ol></li><li class="tocline"><a class="tocxref" href="#conceptscheme-skos-conceptscheme"><bdi class="secno">4.9 </bdi>ConceptScheme - skos:ConceptScheme</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#title-6"><bdi class="secno">4.9.1 </bdi>title</a></li></ol></li><li class="tocline"><a class="tocxref" href="#niet-verder-gespecificeerde-klassen"><bdi class="secno">4.10 </bdi>Niet verder gespecificeerde klassen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#6952D3B2"><bdi class="secno">5. </bdi>Waardelijsten</a></li><li class="tocline"><a class="tocxref" href="#17C1E0BE"><bdi class="secno">6. </bdi>Validaties DCAT-AP NL</a></li><li class="tocline"><a class="tocxref" href="#1CD346FA"><bdi class="secno">A. </bdi>Contributors</a></li><li class="tocline"><a class="tocxref" href="#tof"><bdi class="secno">B. </bdi>Lijst met figuren</a></li><li class="tocline"><a class="tocxref" href="#references"><bdi class="secno">C. </bdi>Referenties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#normatieve-referenties"><bdi class="secno">C.1 </bdi>Normatieve referenties</a></li><li class="tocline"><a class="tocxref" href="#informatieve-referenties"><bdi class="secno">C.2 </bdi>Informatieve referenties</a></li></ol></li></ol></nav>
<section id="conformance" class="introductory"><h2 id="conformiteit">Conformiteit</h2><p>Naast onderdelen die als niet normatief gemarkeerd zijn, zijn ook alle diagrammen, voorbeelden, en noten in dit document niet normatief. Verder is alles in dit document normatief.</p><p>
De trefwoorden <em class="rfc2119">MAG</em>, <em class="rfc2119">MOET</em> en <em class="rfc2119">MOETEN</em> in dit
document moeten worden geïnterpreteerd als in
<a href="https://tools.ietf.org/html/bcp14">BCP 14</a>
[<cite><a class="bibref" data-link-type="biblio" href="#bib-rfc2119" title="rfc2119">RFC2119</a></cite>] [<cite><a class="bibref" data-link-type="biblio" href="#bib-rfc8174" title="rfc8174">RFC8174</a></cite>]
als, en alleen als deze in hoofdletters zijn weergegeven, zoals hier
getoond.
</p></section>
<section class="introductory informative" id="inleiding"><h2 id="3F0B9851">Inleiding</h2><p><em>Dit onderdeel is niet normatief.</em></p><p>Om gestandaardiseerd metadata uit te wisselen tussen verschillende dataportalen heeft Europa het [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] ontwikkeld. [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] is gebaseerd op de <a href="https://www.w3.org/TR/vocab-dcat-2/" target="_blank">"Data Catalog Vocabulary" (DCAT)</a> -specificatie [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>], die wordt ontwikkeld door de Dataset Exchange Working Group. DCAT is een RDF-vocabulaire die ontworpen is om de interoperabiliteit tussen op het web gepubliceerde datacatalogi te vergemakkelijken. Dit profiel faciliteert de uitwisseling van metadata van verschillende domeinen tussen Nederlandse datacatalogi van (semi)overheidsorganisaties op lokaal, regionaal en landelijk nivo en tussen Nederlandse datacatalogi en EU datacatalogi, Het definieert het schema en geeft voorbeelden voor het gebruik ervan.
<br>
<br>
DCAT stelt een dataprovider in staat om datasets en dataservices in een catalogus te beschrijven met behulp van een standaardmodel en vocabulaire dat het gebruik en de aggregatie van metadata uit meerdere catalogi vergemakkelijkt. Dit kan de vindbaarheid van datasets en dataservices vergroten. Het maakt het ook mogelijk om een gedecentraliseerde benadering te hebben voor het publiceren van datacatalogi en maakt federatief zoeken naar datasets in catalogi op meerdere sites mogelijk met behulp van hetzelfde querymechanisme en dezelfde structuur.
<br>
<br>
In DCAT worden klassen en eigenschappen van andere gevestigde vocabulaires (ADMS, FOAF) hergebruikt. DCAT maakt gebruik van een bewezen set gemeenschappelijke metadata genaamd "Dublin Core", die in 2009 als ISO 15836-standaard werd gepubliceerd.
<br>
<br>
Dit document beschrijft het Nederlandse applicatieprofiel op [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>]. Dit Nederlandse applicatieprofiel - DCAT-AP NL- beantwoordt de vraag over hoe [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] in de praktijk wordt toegepast Nederland.</p>
<section id="uitgangspunten"><h3 id="2536E4CD">Uitgangspunten</h3><p>Bij het opstellen zijn van het applicatie profiel zijn volgende uitgangspunten gehanteerd:
<br>
<br></p>
<p><b>Toepassingsbereik</b>
<br>
<br></p>
<p>DCAT-AP-NL faciliteert:</p>
<ul>
<li>de uitwisseling van metadata tussen Nederlandse datacatalogi van (semi-) overheidsorganisatie en overige organisaties die maatschappelijke relevante data willen delen.</li>
<li>de uitwisseling van metadata tussen Nederlandse datacatalogi en EU datacatalogi</li>
<li>de uitwisseling van metadata van primair open data, maar is hier niet toe beperkt</li>
<li>de specifieke Nederlandse behoeften van metadata in datacatalogi</li>
<li>de [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-hvd" title="DCAT-AP for High-Value Datasets">DCAT-AP-HVD</a></cite>] (nog in ontwikkeling)<br>
<br></li>
</ul>
<p><b>Informatiemodellering</b>
<br>
<br></p>
<p>DCAT-AP-NL:</p>
<ul>
<li>is een verdere specialisatie van [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>]</li>
<li>als je voldoet aan DCAT-AP NL voldoe je ook aan [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>]</li>
<li>bevat alle verplichte en aanbevolen eigenschappen [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>], waarbij de gebruiksvoorwaarden van DCAT-AP-NL gelden</li>
<li>introduceert geen uitbreidingen, als die al uitgedrukt kunnen worden in [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] of [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>] ,
tenzij er een hele sterke behoefte / aanleiding toe is, en het [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] of [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>] vocabulary hierin NIET voorziet</li>
<li>is zo generiek mogelijk van opzet en ligt zo dicht mogelijk bij [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>]</li>
<li>is opgesteld in het Nederlands</li>
</ul>
</section>
<section id="relatie-andere-profielen"><h3 id="01CB11A8">Relatie andere profielen</h3><p>Dit profiel is een verdere specificatie van het toepassingsprofiel van de Europa [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>]. Hierbij zijn aanpassingen gedaan op basis van ervaring met DCAT-AP-DONL 1.1, 2.0 en onderzoek en discussies in de werkgroep DCAT-AP-NL en is aansluiting gezocht bij metadata standaarden uit het geo en statistische domein. DCAT-AP-NL is compatible met [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>] en [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] .</p>
<figure id="fig-dcat-ap-nl-positionering"><img src="media/image1.png" alt="Afbeelding met tekst, schermopname, Rechthoek, diagram" style="width: 100%;">
<figcaption><a class="self-link" href="#fig-dcat-ap-nl-positionering">Figuur <bdi class="figno">1</bdi></a> <span class="fig-title">DCAT-AP-NL positionering<i></i></span></figcaption></figure>
<p>Om zoveel mogelijk scenario's te ondersteunen, verplichten de originele [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>] van het W3C en het toepassingsprofiel van de EU [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] weinig.
Op dit moment zijn [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>] en [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] als kandidaat release versie beschikbaar. Na het vaststellen van deze standaarden zal er gekeken worden of het DCAT-AP-NL profiel ook bijgewerkt moet worden.</p>
</section></section>
<section class="chapter" id="termen-en-definities"><h2 id="7001826E"><bdi class="secno">1. </bdi>Termen en definities</h2><p>Een <b>applicatieprofiel</b> is een specificatie voor gegevensuitwisseling dat bijkomende beperkingen introduceert voor het toepassen van vocabularia. Dergelijke bijkomende beperkingen kunnen de volgende elementen bevatten:
<br>
<br></p>
<ul>
<li>verfijning van de terminologie (klassen en eigenschappen) consistent met de semantiek uit de betreffende specificaties met een welbepaald gebruik als doel;</li>
<li>externe terminologie (klassen en eigenschappen) gebruikt voor nieuwe/extra termen die niet in de bestaande vocabularia voorkomen.</li>
<li>meer nauwkeurigheid kan worden bereikt door klassen en klasse-attributen (eigenschappen) als verplicht, aanbevolen of optioneel te classificeren voor een bepaalde toepassing<br>
<br></li>
</ul>
<p>Een <b>dataportaal </b>is een op het web gebaseerd systeem dat een gegevenscatalogus bevat waarin datasets worden beschreven met behulp van metadata. Bovendien biedt een dataportaal diensten aan om het vinden en het hergebruik van de datasets te bevorderen en/of te faciliteren.
<br>
<br>
Een <b>dataset</b> is een verzameling van samenhangende gegevens, die beheerd of gepubliceerd wordt door één organisatie. Een Dataset kan beschikbaar zijn via distributies of Data services.
<br>
<br>
Elke <b>distributie</b> is de werkelijke data van de dataset in een bepaald formaat of een bepaalde aanbiedingsvorm, die als bestand beschikbaar is voor hergebruik.
<br>
<br>
Services die toegang geven tot een of meer datasets of processing functies, zijn een <b>dataservice</b>.
<br>
<br>
Een <b>dataset serie</b> is een verzameling van datasets die een aantal gezamenlijke kenmerken heeft.
<br>
<br>
Een<b> aanbieder</b> is een gegevensaanbieder (bijvoorbeeld een dataportaal dat metadata verstrekt).
<br>
<br>
Een <b>ontvanger</b> is een gebruiker van gegevens (bijvoorbeeld een toepassing die metadata van een dataportaal verwerkt).</p>
<section id="namespaces"><h3 id="75461667"><bdi class="secno">1.1 </bdi>Namespaces</h3><p>Dit toepassingsprofiel maakt gebruik van de namespaces zoals weergegeven in de onderstaande tabel.</p>
<table class="simple">
<thead>
<tr>
<th>Prefix</th>
<th>Namespace IRI</th>
</tr>
</thead>
<tbody><tr>
<td>adms</td>
<td><a href="http://www.w3.org/ns/adms#">http://www.w3.org/ns/adms#</a></td>
</tr>
<tr>
<td>dcat</td>
<td><a href="http://www.w3.org/ns/dcat#">http://www.w3.org/ns/dcat#</a></td>
</tr>
<tr>
<td>dcatap</td>
<td><a href="http://data.europa.eu/r5r/">http://data.europa.eu/r5r/</a></td>
</tr>
<tr>
<td>dct</td>
<td><a href="http://purl.org/dc/terms/">http://purl.org/dc/terms/</a></td>
</tr>
<tr>
<td>dctype</td>
<td><a href="http://purl.org/dc/dcmitype/">http://purl.org/dc/dcmitype/</a></td>
</tr>
<tr>
<td>foaf</td>
<td><a href="http://xmlns.com/foaf/0.1/">http://xmlns.com/foaf/0.1/</a></td>
</tr>
<tr>
<td>locn</td>
<td><a href="http://www.w3.org/ns/locn#">http://www.w3.org/ns/locn#</a></td>
</tr>
<tr>
<td>odrl</td>
<td><a href="http://www.w3.org/ns/odrl/2/">http://www.w3.org/ns/odrl/2/</a></td>
</tr>
<tr>
<td>owl</td>
<td><a href="http://www.w3.org/2002/07/owl#">http://www.w3.org/2002/07/owl#</a></td>
</tr>
<tr>
<td>prov</td>
<td><a href="http://www.w3.org/ns/prov#">http://www.w3.org/ns/prov#</a></td>
</tr>
<tr>
<td>rdf</td>
<td><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#">http://www.w3.org/1999/02/22-rdf-syntax-ns#</a></td>
</tr>
<tr>
<td>rdfs</td>
<td><a href="http://www.w3.org/2000/01/rdf-schema#">http://www.w3.org/2000/01/rdf-schema#</a></td>
</tr>
<tr>
<td>skos</td>
<td><a href="http://www.w3.org/2004/02/skos/core#">http://www.w3.org/2004/02/skos/core#</a></td>
</tr>
<tr>
<td>spdx</td>
<td><a href="http://spdx.org/rdf/terms#">http://spdx.org/rdf/terms#</a></td>
</tr>
<tr>
<td>time</td>
<td><a href="http://www.w3.org/2006/time#">http://www.w3.org/2006/time#</a></td>
</tr>
<tr>
<td>vcard</td>
<td><a href="http://www.w3.org/2006/vcard/ns#">http://www.w3.org/2006/vcard/ns#</a></td>
</tr>
<tr>
<td>xsd</td>
<td><a href="http://www.w3.org/2001/XMLSchema#">http://www.w3.org/2001/XMLSchema#</a></td>
</tr>
</tbody></table>
</section></section>
<section class="chapter" id="structuur-van-het-toepassingsprofiel"><h2 id="3F9A775E"><bdi class="secno">2. </bdi>Structuur van het toepassingsprofiel</h2><section id="dcat-als-universeel-vocabulaire"><h3 id="09DBB0B1"><bdi class="secno">2.1 </bdi>DCAT als universeel vocabulaire</h3><p>Het toepassingsprofiel in dit document is gebaseerd op de specificatie van de Data Catalog Vocabulary (DCAT), ontwikkeld onder verantwoordelijkheid van de Government Linked Data Working Group van W3C. DCAT is een RDF-vocabulaire dat is ontworpen om interoperabiliteit tussen gegevenscatalogi gepubliceerd op het web te vergemakkelijken. Waar nodig worden aanvullende klassen en eigenschappen uit andere bekende vocabulaires hergebruikt.
<br>
<br>
Het DCAT vocabulaire bestaat uit klassen en eigenschappen.
<br>
<br></p>
<ul>
<li><b>Klassen beschrijven dingen</b>:
Ze hebben niet allemaal een URI, maar het wordt aanbevolen om ze van een URI te voorzien. Een klasse beschrijft (complexe) dingen met vergelijkbare characteristieken zoals personen, organisaties, datasets of API's.</li>
<li><b>Klassen hebben eigenschappen</b>: De eigenschappen zijn de attributen die deze dingen beschrijven. Sommige eigenschappen komen in meer dan één klasse voor, een titel bijvoorbeeld is een veel voorkomend attribuut. Andere eigenschappen zijn zeer gespecialiseerd, zoals een bestandsformaat dat alleen zinvol is voor een gegevensbestand.</li>
<li><b>Eigenschappen kunnen eenvoudig of complex zijn</b>: sommige eigenschappen worden direct beschreven in bijvoorbeeld door mensen leesbare tekst of een datum (deze eigenschappen zijn ookwel owl:DatatypeProperty) en andere eigenschappen bevatten relaties naar andere objecten (een owl:ObjectProperty).</li>
</ul>
<p>Over het algemeen kan een klasse herkend worden aan de schrijfwijze: De naam van een eigenschap begint met een kleine letter zoals <code>dcat:dataset</code>, terwijl de naam van een klasse begint met een hoofdletter zoals <code>dcat:Dataset</code>.
<br>
<br>
Klassen en eigenschappen worden gebruikt om de metadata op een gestructureerde manier aan te leveren.</p>
</section>
<section id="overzicht-klassen"><h3 id="1086A1F8"><bdi class="secno">2.2 </bdi>Overzicht Klassen</h3><p>Het volgende diagram geeft een overzicht van de basis functionaliteit van [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>] en dient als startblok voor het begrijpen van de constructie. LET OP, er zijn dus meer klassen, eigenschappen en relaties dan weergegeven zoals te zien in Klassen.</p>
<figure id="fig-dcat-3-0-in-het-kort-hier-moet-nog-datasetseries-worden-toegevoegd"><img src="media/image3.svg" alt="Graphic 21501807" style="width: 100%;">
<figcaption><a class="self-link" href="#fig-dcat-3-0-in-het-kort-hier-moet-nog-datasetseries-worden-toegevoegd">Figuur <bdi class="figno">2</bdi></a> <span class="fig-title">[<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>] In het kort. Hier moet nog DatasetSeries worden toegevoegd.</span></figcaption></figure></section>
<section id="optionaliteit"><h3 id="5679FE7C"><bdi class="secno">2.3 </bdi>Optionaliteit</h3><p>DCAT-AP NL definieert vier niveaus van vereisten voor ontvangers en aanbieders van gegevens. Daarbij geldt dat de niveaus alleen gelden voor de aanbieders. Om volledig te voldoen aan DCAT-AP NL <em class="rfc2119">MOETEN</em> ontvangers altijd in staat zijn om informatie over alle instanties van alle klassen en al hun eigenschappen te verwerken. In de volgende secties worden klassen en eigenschappen aangeduid als "verplicht" (V), "aanbevolen" (A), "optioneel" (O) of "conditioneel" (C). Deze termen hebben de volgende betekenis:
<br>
<br></p>
<ul>
<li>Verplichte eigenschap: een ontvanger <em class="rfc2119">MOET</em> de informatie voor die eigenschap kunnen verwerken; een aanbieder <em class="rfc2119">MOET</em> de informatie voor die eigenschap verstrekken.</li>
<li>Aanbevolen eigenschap: een ontvanger <em class="rfc2119">MOET</em> de informatie voor die eigenschap kunnen verwerken; een aanbieder BEHOORT de informatie voor die eigenschap te verstrekken indien deze beschikbaar is.</li>
<li>Optionele eigenschap: een ontvanger <em class="rfc2119">MOET</em> de informatie voor die eigenschap kunnen verwerken; een aanbieder <em class="rfc2119">MAG</em> de informatie voor die eigenschap verstrekken, maar is daartoe niet verplicht.</li>
<li>Conditionele eigenschap: een ontvanger <em class="rfc2119">MOET</em> de informatie voor die eigenschap kunnen verwerken; een aanbieder <em class="rfc2119">MOET</em> de informatie voor die eigenschap verstrekken, indien de conditie van toepassing is.<br>
<br></li>
</ul>
<p>In de gegeven context betekent de term "verwerken" dat ontvangers binnenkomende gegevens <em class="rfc2119">MOETEN</em> accepteren en deze gegevens op transparante wijze aan applicaties en diensten moeten leveren. Het impliceert noch schrijft voor wat applicaties en diensten uiteindelijk met de gegevens doen (parseren, converteren, opslaan, doorzoekbaar maken, weergeven aan gebruikers, etc.).
<br>
<br></p>
<p>De termen <em class="rfc2119">MOET</em> (MUST), BEHOORT (SHOULD) en <em class="rfc2119">MAG</em> (MAY) in dit document moeten worden geïnterpreteerd als in <a href="https://www.rfc-editor.org/info/bcp14" target="_blank">BCP 14</a> en alleen als deze in hoofdletters zijn weergegeven, zoals hier getoond.</p>
</section>
<section id="waardelijsten"><h3 id="14786F8D"><bdi class="secno">2.4 </bdi>Waardelijsten</h3><p>In de metadata dienen de waarden uit de waardelijsten waarnaar verwezen wordt bij de element beschrijving, gehanteerd te worden. Dit zijn vaak de door de EU verplichte waardelijsten.
De door de EU verplichte waardelijsten zijn "controlled vocabulaires", deze voldoen aan de volgende specificaties:</p>
<ul>
<li>Worden gepubliceerd onder een open licentie.</li>
<li>Worden geëxploiteerd en/of onderhouden door een instelling van de Europese Unie, door een erkende standaardisatieorganisatie of een andere vertrouwde organisatie.</li>
<li>Zijn goed gedocumenteerd.</li>
<li>Zijn voorzien van labels in meerdere talen, idealiter in alle officiële talen van de Europese Unie.</li>
<li>Bevatten een relatief klein aantal termen (bijvoorbeeld 10-25) die algemeen genoeg zijn om een breed scala aan bronnen te kunnen classificeren.</li>
<li>Termen worden geïdentificeerd door URI's, waarbij elke URI wordt omgezet in documentatie over de term.</li>
<li>Hebben beleid voor persistentie en versiebeheer.<br>
<br>
Deze criteria zijn niet bedoeld om gecontroleerde waardelijst in het algemeen te definiëren; ze geven een voorbeeld van mogelijke specificaties van gecontroleerde waardelijsten.
<br>
<br>
De (door de EU verplichte gecontroleerde) waardelijsten die in dit profiel gebruikt moeten worden zijn opgenomen in het hoofdstuk <a href="https://geonovum.github.io/DCAT-AP-NL30/#6952D3B2" target="_blank">Waardelijsten</a></li>
</ul>
</section>
<section id="omschrijving-eigenschappen"><h3 id="64A3722D"><bdi class="secno">2.5 </bdi>Omschrijving eigenschappen</h3><ul>
<li><b>Eigenschap:</b> Dit is de originele engelstalige naam zoals gebruikt in de W3C specificatie van <a href="https://www.w3.org/TR/vocab-dcat-2" target="_blank"><i>[<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-3.0" title="DCAT-3.0">DCAT-3.0</a></cite>]</i></a> en [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>].</li>
<li><b>Definitie</b>: Dit is de Nederlandstalige definitie van de eigenschap.</li>
<li><b>RDF-eigenschap (URI):</b> Dit is de (technische) naam van de eigenschap die van toepassing is voor de uitwisseling van de DCAT data.</li>
<li><b>Bereik:</b> Het type (klasse of datatype) dat een waarde van deze eigenschap moet hebben.</li>
<li><b>Kardinaliteit</b>: Geeft aan of de eigenschap 0, 1 of meerdere keren mag voorkomen. Hierbij wordt gebruik gemaakt van de schrijfwijze <code>x..y</code>, waarbij x het minimaal aantal voorkomens aangeeft en y het maximaal aantal.</li>
<li><b>Optionaliteit: </b>Geeft aan of een eigenschap verplicht, aanbevolen, optioneel of conditioneel is.</li>
<li><b>Conditie:</b> Geeft de conditie aan in het geval de optionaliteit Conditioneel is. Bijvoorbeeld HighValueData set.</li>
<li><b>Waardelijst</b>: Een lijst van mogelijke waarden voor een eigenschap.</li>
<li><b>Herkomst</b>: Geeft aan of de eigenschap overeenkomt met DCAT-AP. AP - is zoals beschreven in DCAT-AP; NL - is zoals beschreven in DCAT-AP en DCAT-AP HVD, echter met aanvullende restricties, condities, en toelichting op het gebruik van de eigenschap. Daarnaast zijn een aantal DCAT eigenschappen toegevoegd die geen onderdeel vormen van DCAT-AP.<br>
<br>
<div class="note" role="note" id="issue-container-generatedID"><div role="heading" class="note-title marker" id="h-note" aria-level="4"><span>Noot</span></div><aside class=""><p class="space-after" id="omschrijvin_eigenschappen-1">Een overzicht met de verschillen tussen DCAT-AP-NL en DCAT-AP vind je in het document <a href="https://github.com/Geonovum/DCAT-AP-NL30" target="_blank">'Verschillen DCAT-AP en DCAT-AP-NL.pdf'</a> </p><aside></aside></aside></div></li>
</ul>
</section>
<section id="ondersteuning-voor-meertaligheid"><h3 id="10B7B8F1"><bdi class="secno">2.6 </bdi>Ondersteuning voor meertaligheid</h3><p>Alle eigenschappen die voor mensen leesbare tekst bevatten (de range literal met een string waarde hebben) zoals bijvoorbeeld <code>dct:title</code> , <code>dct:description</code>, en <code>dcat:keyword </code>kunnen waardes in verschillende talen bevatten. Voor elke taal wordt de eigenschap herhaald met de toevoeging van een language tag om aan te geven in welke taal de waarde geschreven is.
<br>
<br>
Daarvoor wordt een waarde uit de waardelijst voor language toegepast: <a href="https://id.loc.gov/vocabulary/iso639-1.html">ISO 639-1 (two-letter)</a></p>
</section></section>
<section id="klassen"><h2 id="x3-klassen"><bdi class="secno">3. </bdi>Klassen</h2>
<p>In dit hoofdstuk worden de belangrijkste klassen van het <u>applicatieprofiel</u> benoemd en beschreven. Deze klassen vormen de kern van het applicatieprofiel. De eigenschappen en de bijbehorende beperkingen die van toepassing zijn in de context van dit profiel worden in tabelvorm weergegeven. Elke rij komt overeen met één eigenschap. De eigenschappen worden in sub paragrafen verder toegelicht.
<br>
<br>
De niet beschreven klassen en eigenschappen behoren conform [<cite><a class="bibref" data-link-type="biblio" href="#bib-dcat-ap-3.0" title="DCAT-AP-3.0">DCAT-AP-3.0</a></cite>] toegepast te worden.</p>
<section id="dataset-dcat-dataset"><h3 id="x3-1-dataset-dcat-dataset"><bdi class="secno">3.1 </bdi>Dataset - dcat:Dataset</h3>
<p><p>Een dataset is een zinvolle verzameling van samenhangende gegevens, die beheerd of gepubliceerd wordt door één organisatie, en in één of meer formaten beschikbaar of downloadbaar is.</p>
</p>
<table class="simple">
<tbody><tr>
<th>Property</th>
<th>URI</th>
<th>Range</th>
<th>Card</th>
<th>Optionaliteit</th>
<th>Herkomst</th>
</tr>
<tr>
<td><a href="#dataset-access-rights">access rights</a></td>
<td><a href="http://purl.org/dc/terms/accessRights">dct:accessRights</a></td>
<td><a href="http://purl.org/dc/terms/RightsStatement">dct:RightsStatement</a></td>
<td>1..1</td>
<td>V</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-applicable-legislation">applicable legislation</a></td>
<td><a href="http://data.europa.eu/r5r/applicableLegislation">dcatap:applicableLegislation</a></td>
<td><a href="http://data.europa.eu/eli/ontology#LegalResource">eli:LegalResource</a></td>
<td>0..n</td>
<td>C</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-conforms-to">conforms to</a></td>
<td><a href="http://purl.org/dc/terms/conformsTo">dct:conformsTo</a></td>
<td><a href="http://purl.org/dc/terms/Standard">dct:Standard</a></td>
<td>0..n</td>
<td>A</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-contact-point">contact point</a></td>
<td><a href="http://www.w3.org/ns/dcat#contactPoint">dcat:contactPoint</a></td>
<td><a href="http://www.w3.org/2006/vcard/ns#Kind">vcard:Kind</a></td>
<td>1..1</td>
<td>V</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-creator">creator</a></td>
<td><a href="http://purl.org/dc/terms/creator">dct:creator</a></td>
<td><a href="http://xmlns.com/foaf/0.1/Agent">foaf:Agent</a></td>
<td>1..1</td>
<td>V</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-dataset-distribution">dataset distribution</a></td>
<td><a href="http://www.w3.org/ns/dcat#distribution">dcat:distribution</a></td>
<td><a href="http://www.w3.org/ns/dcat#Distribution">dcat:Distribution</a></td>
<td>0..n</td>
<td>C</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-description">description</a></td>
<td><a href="http://purl.org/dc/terms/description">dct:description</a></td>
<td><a href="http://www.w3.org/2000/01/rdf-schema#Literal">rdfs:Literal</a></td>
<td>1..n</td>
<td>V</td>
<td>AP</td>
</tr>
<tr>
<td><a href="#dataset-documentation">documentation</a></td>
<td><a href="http://xmlns.com/foaf/0.1/page">foaf:page</a></td>
<td><a href="http://xmlns.com/foaf/0.1/Document">foaf:Document</a></td>
<td>0..n</td>
<td>A</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-frequency">frequency</a></td>
<td><a href="http://purl.org/dc/terms/accrualPeriodicity">dct:accrualPeriodicity</a></td>
<td><a href="http://purl.org/dc/terms/Frequency">dct:Frequency</a></td>
<td>0..1</td>
<td>O</td>
<td>AP</td>
</tr>
<tr>
<td><a href="#dataset-geographical-coverage">geographical coverage</a></td>
<td><a href="http://purl.org/dc/terms/spatial">dct:spatial</a></td>
<td><a href="http://purl.org/dc/terms/Location">dct:Location</a></td>
<td>0..n</td>
<td>A</td>
<td>AP</td>
</tr>
<tr>
<td><a href="#dataset-has-version">has version</a></td>
<td><a href="http://www.w3.org/ns/dcat#hasVersion">dcat:hasVersion</a></td>
<td><a href="http://www.w3.org/ns/dcat#Dataset">dcat:Dataset</a></td>
<td>0..n</td>
<td>O</td>
<td>AP</td>
</tr>
<tr>
<td><a href="#dataset-hvd-category">HVD Category</a></td>
<td><a href="http://data.europa.eu/r5r/hvdCategory">dcatap:hvdCategory</a></td>
<td><a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a></td>
<td>0..n</td>
<td>C</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-identifier">identifier</a></td>
<td><a href="http://purl.org/dc/terms/identifier">dct:identifier</a></td>
<td><a href="http://www.w3.org/2000/01/rdf-schema#Literal">rdfs:Literal</a></td>
<td>1..1</td>
<td>V</td>
<td>NL</td>
</tr>
<tr>
<td><a href="#dataset-in-series">in series</a></td>
<td><a href="http://www.w3.org/ns/dcat#inSeries">dcat:inSeries</a></td>
<td><a href="http://www.w3.org/ns/dcat#DatasetSeries">dcat:DatasetSeries</a></td>
<td>0..n</td>
<td>O</td>
<td>AP</td>
</tr>
<tr>
<td><a href="#dataset-is-referenced-by">is referenced by</a></td>
<td><a href="http://purl.org/dc/terms/isReferencedBy">dct:isReferencedBy</a></td>
<td><a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a></td>