forked from Geonovum/MIM-Werkomgeving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vv-st-mim-20200225.html
10001 lines (9849 loc) · 553 KB
/
vv-st-mim-20200225.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"><!-- HTML-Header ------------------------------------------------------------------------------><head><meta charset="utf-8"><meta name="generator" content="ReSpec 24.5.2"><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><style>/* --- EXAMPLES --- */
span.example-title {
text-transform: none;
}
aside.example, div.example, div.illegal-example {
padding: 0.5em;
margin: 1em 0;
position: relative;
clear: both;
}
div.illegal-example { color: red }
div.illegal-example p { color: black }
aside.example, div.example {
padding: .5em;
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;
}
aside.example div.example span.example-title {
color: #999;
}
</style><style>/* --- ISSUES/NOTES --- */
.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;
}
.warning {
border-color: #f11;
border-width: .2em;
border-style: solid;
background: #fbe9e9;
}
.warning-title:before{
content: "⚠"; /*U+26A0 WARNING SIGN*/
font-size: 3em;
float: left;
height: 100%;
padding-right: .3em;
vertical-align: top;
margin-top: -0.5em;
}
li.task-list-item {
list-style: none;
}
input.task-list-item-checkbox {
margin: 0 0.35em 0.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: bold;
border-radius: 4px;
position: relative;
bottom: 2px;
border: none;
}
.issue a.respec-label-dark {
color: #fff;
background-color: #000;
}
.issue a.respec-label-light {
color: #000;
background-color: #fff;
}
</style>
<!--------------------------------------------------------------------------------------------------
//-- File. . . : index.html
//-- Bevat . . : Template voor de index.html die verplicht is voor respec
//-- Gebaseerd op https://github.com/Geonovum/respec/wiki
//-- Deze file moet worden neergezet in de root-directory van de
//-- betreffende standaard.
//-- Door. . . : Jan van Gelder
//--------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------
//-- Log . . . : 20181015 - JvG - Initiele versie
//
----------------------------------------------------------------------------------------------------
0 1 2 3 4 5 6 7 8 9 0
1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
--------------------------------------------------------------------------------------------------->
<!-- Invullen: de titel van de standaard of het document ---------------------------------->
<title>MIM - Metamodel Informatie Modellering</title>
<!-- Invullen: de naam van de lokale CSS file --------------------------------------------->
<link rel="stylesheet" type="text/css" href="./media/style.css">
<link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico">
<style id="respec-mainstyle">/*****************************************************************
* ReSpec 3 CSS
* Robin Berjon - http://berjon.com/
*****************************************************************/
/* Override code highlighter background */
.hljs {
background: transparent !important;
}
/* --- INLINES --- */
h1 abbr,
h2 abbr,
h3 abbr,
h4 abbr,
h5 abbr,
h6 abbr,
a abbr {
border: none;
}
dfn {
font-weight: bold;
}
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;
}
#references :target {
background: #eaf3ff;
}
cite .bibref {
font-style: normal;
}
code {
color: #c83500;
}
th code {
color: inherit;
}
/* --- TOC --- */
.toc a,
.tof a {
text-decoration: none;
}
a .secno,
a .figno {
color: #000;
}
ul.tof,
ol.tof {
list-style: none outside none;
}
.caption {
margin-top: 0.5em;
font-style: italic;
}
/* --- TABLE --- */
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[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;
}
/* --- DL --- */
.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,
.respec-dfn-list {
column-count: 2;
}
#issue-summary li,
.respec-dfn-list li {
list-style: none;
}
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: 0.3em;
background-color: white;
padding-bottom: 0.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: -0.3em;
}
details.respec-tests-details>li {
padding-left: 1em;
}
a[href].self-link:hover {
opacity: 1;
text-decoration: none;
background-color: transparent;
}
h2,
h3,
h4,
h5,
h6 {
position: relative;
}
aside.example .marker > a.self-link {
color: inherit;
}
h2>a.self-link,
h3>a.self-link,
h4>a.self-link,
h5>a.self-link,
h6>a.self-link {
border: none;
color: inherit;
font-size: 83%;
height: 2em;
left: -1.6em;
opacity: .5;
position: absolute;
text-align: center;
text-decoration: none;
top: 0;
transition: opacity .2s;
width: 2em;
}
h2>a.self-link::before,
h3>a.self-link::before,
h4>a.self-link::before,
h5>a.self-link::before,
h6>a.self-link::before {
content: "§";
display: block;
}
@media (max-width: 767px) {
dd {
margin-left: 0;
}
/* Don't position self-link in headings off-screen */
h2>a.self-link,
h3>a.self-link,
h4>a.self-link,
h5>a.self-link,
h6>a.self-link {
left: auto;
top: auto;
}
}
@media print {
.removeOnSave {
display: none;
}
}
</style><link rel="stylesheet" href="https://tools.geostandaarden.nl/respec/style/GN-VV.css"><link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico"><style>/*
github.com style (c) Vasily Polovnyov <[email protected]>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
background: #f8f8f8;
}
.hljs-comment,
.hljs-quote {
color: #998;
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
color: #333;
font-weight: bold;
}
.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
color: #008080;
}
.hljs-string,
.hljs-doctag {
color: #d14;
}
.hljs-title,
.hljs-section,
.hljs-selector-id {
color: #900;
font-weight: bold;
}
.hljs-subst {
font-weight: normal;
}
.hljs-type,
.hljs-class .hljs-title {
color: #458;
font-weight: bold;
}
.hljs-tag,
.hljs-name,
.hljs-attribute {
color: #000080;
font-weight: normal;
}
.hljs-regexp,
.hljs-link {
color: #009926;
}
.hljs-symbol,
.hljs-bullet {
color: #990073;
}
.hljs-built_in,
.hljs-builtin-name {
color: #0086b3;
}
.hljs-meta {
color: #999;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
</style><script id="initialUserConfig" type="application/json">{
"specStatus": "GN-VV",
"specType": "ST",
"format": "markdown",
"publishDate": "2020-02-25",
"editors": [
{
"name": "Dick Krijtenburg",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Jan van Gelder",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"authors": [
{
"name": "Lennart van Bergen",
"company": "Kadaster",
"companyURL": "https://www.kadaster.nl"
},
{
"name": "Thies Mesdag",
"company": "Kadaster",
"companyURL": "https://www.kadaster.nl"
},
{
"name": "Marco Brattinga",
"company": "Kadaster",
"companyURL": "https://www.kadaster.nl"
},
{
"name": "Paul Janssen",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Aan eerdere versies van MIM werkten mee:",
"company": "",
"companyURL": ""
},
{
"name": "Ellen Debats",
"company": "KING",
"companyURL": "https://www.vng.nl"
},
{
"name": "Arjan C. Kloosterboer",
"company": "KING",
"companyURL": "https://www.vng.nl"
},
{
"name": "Wilko Quak",
"company": "TU Delft",
"companyURL": "https://www.tudelft.nl"
},
{
"name": "Peter Lentjens",
"company": "Kadaster",
"companyURL": "https://www.kadaster.nl"
},
{
"name": "Linda van den Brink",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"shortName": "mim",
"pubDomain": "mim",
"github": "https://github.com/Geonovum/MIM-Werkomgeving",
"issueBase": "https://github.com/Geonovum/MIM-Werkomgeving/issues/",
"edDraftURI": "https://geonovum.github.io/MIM-Werkomgeving/",
"licence": "cc-by-nd",
"localBiblio": {
"MDA": {
"title": "Model Driven Architecture (MDA) Guide",
"href": "",
"status": "rev. 2.0, 1-6-2014",
"publisher": "",
"company": "Object Management Group",
"id": "mda"
},
"UML": {
"title": "Unified Modeling Language (UML)",
"href": "http://uml.org",
"status": "",
"publisher": "",
"company": "",
"id": "uml"
},
"ODM": {
"title": "Ontology Definition Metamodel",
"href": "https://www.omg.org/spec/ODM/1.1",
"status": "versie 1.1, September 2014",
"publisher": "",
"company": "Object Management Group",
"id": "odm"
},
"OMG": {
"title": "OMG Unified Modeling Language TM",
"href": "http://www.omg.org/spec/UML/2.5",
"status": "versie 2.5",
"publisher": "",
"company": "",
"id": "omg"
},
"SCAT": {
"title": "Stelselcatalogus",
"href": "http://www.stelselcatalogus.nl",
"status": "",
"publisher": "",
"company": "",
"id": "scat"
},
"GAB": {
"title": "GAB",
"href": "https://www.noraonline.nl/wiki/Gemeenschappelijke_Afspraken_Berichten",
"status": "",
"publisher": "",
"company": "",
"id": "gab"
},
"Linked-Data": {
"title": "Linked Data",
"href": "https://www.noraonline.nl/wiki/Linked_Data",
"status": "",
"publisher": "",
"company": "",
"id": "linked-data"
},
"iso-8601": {
"title": "Representation of dates and times. ISO 8601:2004.",
"href": "http://www.iso.org/iso/catalogue_detail?csnumber=40874",
"publisher": "International Organization for Standardization (ISO)",
"date": "2004",
"status": "ISO 8601:2004",
"id": "iso-8601"
},
"NORA": {
"title": "Handreiking gegevensbeschrijving (NORA)",
"href": "http://noraonline.nl/wiki/Gegevensbeschrijvingen/Handreiking",
"status": "",
"publisher": "",
"company": "",
"id": "nora"
},
"iso-11404": {
"title": "11404:2008 Information technology – General Purpose Datatypes (GPD)",
"href": "http://noraonline.nl/wiki/Gegevensbeschrijvingen/Handreiking",
"status": "",
"publisher": "",
"company": "NEN-ISO/IEC",
"id": "iso-11404"
},
"REGEXP": {
"title": "Formeel patroon (Reguliere Expressies)",
"href": "http://perldoc.perl.org/perlre.html",
"status": "",
"publisher": "",
"company": "",
"id": "regexp"
},
"OCL": {
"title": "OCL",
"href": "http://www.omg.org/spec/OCL/2.4/",
"status": "",
"publisher": "",
"company": "",
"id": "ocl"
},
"NEN3610": {
"title": "NEN-3610 Basismodel geo-informatie",
"href": "https://www.nen.nl/NEN-Shop/Norm/NEN-36102011-nl.htm",
"status": "2016",
"publisher": "",
"company": "",
"id": "nen3610"
},
"GeoJSON": {
"title": "GeoJSON",
"href": "https://geojson.org/",
"publisher": "",
"status": "",
"company": "",
"id": "geojson"
},
"SOAP": {
"title": "SOAP Specifications",
"href": "https://www.w3.org/TR/SOAP/",
"publisher": "",
"status": "",
"company": "",
"id": "soap"
}
},
"previousPublishDate": "2019-06-19",
"previousMaturity": "GN-DEF",
"maxTocLevel": 4,
"publishISODate": "2020-02-25T00:00:00.000Z",
"generatedSubtitle": "Versie ter vaststelling 25 februari 2020"
}</script><meta name="description" content="Metamodel voor het beschrijven van informatiemodellen (MIM), versie 1.1."><script type="application/ld+json">{
"@context": [
"http://schema.org",
{
"@vocab": "http://schema.org/",
"@language": "nl",
"foaf": "http://xmlns.com/foaf/0.1/",
"datePublished": {
"@type": "http://www.w3.org/2001/XMLSchema#date"
},
"inLanguage": {
"@language": null
},
"isBasedOn": {
"@type": "@id"
},
"license": {
"@type": "@id"
}
}
],
"id": "https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/",
"type": [
"TechArticle"
],
"name": "MIM - Metamodel Informatie Modellering",
"inLanguage": "nl",
"license": "https://creativecommons.org/licenses/by/4.0/legalcode",
"datePublished": "2020-02-25",
"copyrightHolder": {
"name": "Geonovum",
"url": "https://www.geonovum.nl/"
},
"discussionUrl": "https://github.com/Geonovum/MIM-Werkomgeving/issues/",
"alternativeHeadline": "",
"isBasedOn": "https://docs.geostandaarden.nl/mim/def-st-mim-20190619/",
"description": "Metamodel voor het beschrijven van informatiemodellen (MIM), versie 1.1.",
"editor": [
{
"type": "Person",
"name": "Dick Krijtenburg",
"worksFor": {
"name": "Geonovum",
"url": "https://www.geonovum.nl"
}
},
{
"type": "Person",
"name": "Jan van Gelder",
"worksFor": {
"name": "Geonovum",
"url": "https://www.geonovum.nl"
}
}
],
"contributor": [
{
"type": "Person",
"name": "Lennart van Bergen",
"worksFor": {
"name": "Kadaster",
"url": "https://www.kadaster.nl"
}
},
{
"type": "Person",
"name": "Thies Mesdag",
"worksFor": {
"name": "Kadaster",
"url": "https://www.kadaster.nl"
}
},
{
"type": "Person",
"name": "Marco Brattinga",
"worksFor": {
"name": "Kadaster",
"url": "https://www.kadaster.nl"
}
},
{
"type": "Person",
"name": "Paul Janssen",
"worksFor": {
"name": "Geonovum",
"url": "https://www.geonovum.nl"
}
},
{
"type": "Person",
"name": "Aan eerdere versies van MIM werkten mee:"
},
{
"type": "Person",
"name": "Ellen Debats",
"worksFor": {
"name": "KING",
"url": "https://www.vng.nl"
}
},
{
"type": "Person",
"name": "Arjan C. Kloosterboer",
"worksFor": {
"name": "KING",
"url": "https://www.vng.nl"
}
},
{
"type": "Person",
"name": "Wilko Quak",
"worksFor": {
"name": "TU Delft",
"url": "https://www.tudelft.nl"
}
},
{
"type": "Person",
"name": "Peter Lentjens",
"worksFor": {
"name": "Kadaster",
"url": "https://www.kadaster.nl"
}
},
{
"type": "Person",
"name": "Linda van den Brink",
"worksFor": {
"name": "Geonovum",
"url": "https://www.geonovum.nl"
}
}
],
"citation": [
{
"id": "https://www.nen.nl/NEN-Shop/Norm/NEN-36102011-nl.htm",
"type": "TechArticle",
"name": "NEN-3610 Basismodel geo-informatie",
"url": "https://www.nen.nl/NEN-Shop/Norm/NEN-36102011-nl.htm"
},
{
"id": "http://uml.org",
"type": "TechArticle",
"name": "Unified Modeling Language (UML)",
"url": "http://uml.org"
},
{
"id": "https://www.noraonline.nl/wiki/Linked_Data",
"type": "TechArticle",
"name": "Linked Data",
"url": "https://www.noraonline.nl/wiki/Linked_Data"
},
{
"id": "http://www.omg.org/spec/UML/2.5",
"type": "TechArticle",
"name": "OMG Unified Modeling Language TM",
"url": "http://www.omg.org/spec/UML/2.5"
},
{
"id": "",
"type": "TechArticle",
"name": "Model Driven Architecture (MDA) Guide",
"url": ""
},
{
"id": "https://www.w3.org/TR/xml/",
"type": "TechArticle",
"name": "Extensible Markup Language (XML) 1.0 (Fifth Edition)",
"url": "https://www.w3.org/TR/xml/"
},
{
"id": "http://www.opengeospatial.org/standards/gml",
"type": "TechArticle",
"name": "Geography Markup Language (GML) Encoding Standard",
"url": "http://www.opengeospatial.org/standards/gml"
},
{
"id": "https://www.w3.org/TR/SOAP/",
"type": "TechArticle",
"name": "SOAP Specifications",
"url": "https://www.w3.org/TR/SOAP/"
},
{
"id": "https://geojson.org/",
"type": "TechArticle",
"name": "GeoJSON",
"url": "https://geojson.org/"
},
{
"id": "https://www.omg.org/spec/ODM/1.1",
"type": "TechArticle",
"name": "Ontology Definition Metamodel",
"url": "https://www.omg.org/spec/ODM/1.1"
},
{
"id": "https://www.w3.org/TR/rdf11-primer/",
"type": "TechArticle",
"name": "RDF 1.1 Primer",
"url": "https://www.w3.org/TR/rdf11-primer/"
},
{
"id": "https://www.w3.org/TR/owl2-primer/",
"type": "TechArticle",
"name": "OWL 2 Web Ontology Language Primer (Second Edition)",
"url": "https://www.w3.org/TR/owl2-primer/"
},
{
"id": "https://www.w3.org/TR/shacl/",
"type": "TechArticle",
"name": "Shapes Constraint Language (SHACL)",
"url": "https://www.w3.org/TR/shacl/"
},
{
"id": "https://www.w3.org/TR/rdf11-concepts/",
"type": "TechArticle",
"name": "RDF 1.1 Concepts and Abstract Syntax",
"url": "https://www.w3.org/TR/rdf11-concepts/"
},
{
"id": "http://www.stelselcatalogus.nl",
"type": "TechArticle",
"name": "Stelselcatalogus",
"url": "http://www.stelselcatalogus.nl"
},
{
"id": "https://www.noraonline.nl/wiki/Gemeenschappelijke_Afspraken_Berichten",
"type": "TechArticle",
"name": "GAB",
"url": "https://www.noraonline.nl/wiki/Gemeenschappelijke_Afspraken_Berichten"
},
{
"id": "http://noraonline.nl/wiki/Gegevensbeschrijvingen/Handreiking",
"type": "TechArticle",
"name": "Handreiking gegevensbeschrijving (NORA)",
"url": "http://noraonline.nl/wiki/Gegevensbeschrijvingen/Handreiking"
},
{
"id": "http://noraonline.nl/wiki/Gegevensbeschrijvingen/Handreiking",
"type": "TechArticle",
"name": "11404:2008 Information technology – General Purpose Datatypes (GPD)",
"url": "http://noraonline.nl/wiki/Gegevensbeschrijvingen/Handreiking"
},
{
"id": "http://www.iso.org/iso/catalogue_detail?csnumber=40874",
"type": "TechArticle",
"name": "Representation of dates and times. ISO 8601:2004.",
"url": "http://www.iso.org/iso/catalogue_detail?csnumber=40874"
},
{
"id": "http://perldoc.perl.org/perlre.html",
"type": "TechArticle",
"name": "Formeel patroon (Reguliere Expressies)",
"url": "http://perldoc.perl.org/perlre.html"
},
{
"id": "http://www.omg.org/spec/OCL/2.4/",
"type": "TechArticle",
"name": "OCL",
"url": "http://www.omg.org/spec/OCL/2.4/"
},
{
"id": "https://www.iso.org/standard/56734.html",
"type": "TechArticle",
"name": "Geographic information -- Conceptual schema language",
"url": "https://www.iso.org/standard/56734.html"
}
]
}</script></head>
<!-- HTML-Body -------------------------------------------------------------------------------->
<body class="h-entry"><div class="head">
<a href="https://www.geonovum.nl/" class="logo"><img id="Geonovum" alt="Geonovum" src="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg" width="132" height="67"></a>
<h1 class="title p-name" id="title">MIM - Metamodel Informatie Modellering</h1>
<h2>Geonovum Standaard<br>
Versie ter vaststelling <time class="dt-published" datetime="2020-02-25">25 februari 2020</time></h2>
<dl>
<dt>Deze versie:</dt><dd><a class="u-url" href="https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/">https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/</a></dd><dt>Laatst gepubliceerde versie:</dt><dd><a href="https://docs.geostandaarden.nl/mim/mim/">https://docs.geostandaarden.nl/mim/mim/</a></dd>
<dt>Vorige versie:</dt><dd><a href="https://docs.geostandaarden.nl/mim/wv-st-mim11-20191029/">https://docs.geostandaarden.nl/mim/wv-st-mim11-20191029/</a></dd>
<dt>Laatste werkversie:</dt><dd><a href="https://geonovum.github.io/MIM-Werkomgeving/">https://geonovum.github.io/MIM-Werkomgeving/</a></dd>
<dt>Redacteurs:</dt>
<dd class="p-author h-card vcard"><span class="p-name fn">Dick Krijtenburg</span>, <a class="p-org org h-org h-card" href="https://www.geonovum.nl">Geonovum</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Jan van Gelder</span>, <a class="p-org org h-org h-card" href="https://www.geonovum.nl">Geonovum</a></dd>
<dt>Auteurs:</dt><dd class="p-author h-card vcard"><span class="p-name fn">Lennart van Bergen</span>, <a class="p-org org h-org h-card" href="https://www.kadaster.nl">Kadaster</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Thies Mesdag</span>, <a class="p-org org h-org h-card" href="https://www.kadaster.nl">Kadaster</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Marco Brattinga</span>, <a class="p-org org h-org h-card" href="https://www.kadaster.nl">Kadaster</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Paul Janssen</span>, <a class="p-org org h-org h-card" href="https://www.geonovum.nl">Geonovum</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Aan eerdere versies van MIM werkten mee:</span></dd><dd class="p-author h-card vcard"><span class="p-name fn">Ellen Debats</span>, <a class="p-org org h-org h-card" href="https://www.vng.nl">KING</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Arjan C. Kloosterboer</span>, <a class="p-org org h-org h-card" href="https://www.vng.nl">KING</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Wilko Quak</span>, <a class="p-org org h-org h-card" href="https://www.tudelft.nl">TU Delft</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Peter Lentjens</span>, <a class="p-org org h-org h-card" href="https://www.kadaster.nl">Kadaster</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Linda van den Brink</span>, <a class="p-org org h-org h-card" href="https://www.geonovum.nl">Geonovum</a></dd>
<dt>Doe mee:</dt><dd>
<a href="https://github.com/Geonovum/MIM-Werkomgeving/">GitHub Geonovum/MIM-Werkomgeving</a>
</dd><dd>
<a href="https://github.com/Geonovum/MIM-Werkomgeving/issues/">Dien een melding in</a>
</dd><dd>
<a href="https://github.com/Geonovum/MIM-Werkomgeving/commits/gh-pages">Revisiehistorie</a>
</dd><dd>
<a href="https://github.com/Geonovum/MIM-Werkomgeving/pulls/">Pull requests</a>
</dd>
</dl>
<dl>
<dt>Rechtenbeleid:</dt>
<dd>
<div class="copyright" style="margin: 0.25em 0;">
<abbr title="Creative Commons Attribution 4.0 International Public License">
<a href="https://creativecommons.org/licenses/by/4.0/legalcode"><img src="https://tools.geostandaarden.nl/respec/style/logos/cc-by.svg" alt="Creative Commons Attribution 4.0 International Public License" width="115" height="40"></a>
</abbr>
<div style="display:inline-block; vertical-align:top">
<p style="font-size: small;">Creative Commons Attribution 4.0 International Public License<br>(CC-BY)</p>
</div>
</div>
</dd>
</dl>
<hr title="Separator for header">
</div><section id="abstract" data-format="markdown" class="introductory"><h2>Samenvatting</h2><p>Metamodel voor het beschrijven van informatiemodellen (MIM), versie 1.1. </p><p>Met deze specificatie kan een informatiemodel gemaakt worden, in deze versie is dit uitgewerkt met UML en met Linked Data.
De beschrijving van MIM kent sinds versie 1.1 een algemeen deel, een deel in UML en nieuw toegevoegd in versie 1.1 is het Hoofdstuk <a href="#metamodel-in-linked-data-ld">Metamodel in Linked Data (LD)</a>. Verder zijn er een aantal nieuwe mogelijkheden toegevoegd die voorzien in gebruikerswensen.</p></section><section id="sotd" class="introductory"><h2>Status van dit document</h2><p>
<em>Deze paragraaf beschrijft de status van dit document ten tijde van publicatie. Het is mogelijk dat er actuelere versies van dit document bestaan. Een lijst van Geonovum publicaties en de laatste gepubliceerde versie van dit document zijn te vinden op <a href="https://www.geonovum.nl/geo-standaarden/alle-standaarden">https://www.geonovum.nl/geo-standaarden/alle-standaarden</a>.</em>
</p><p>
Dit is een definitief concept van de nieuwe versie van de standaard. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.
De programmaraad van Geonovum beoordeelt dit definitief concept. Keurt zij het goed, dan is er een nieuwe standaard.
</p></section><nav id="toc"><h2 class="introductory" id="inhoudsopgave">Inhoudsopgave</h2><ol class="toc"><li class="tocline"><a class="tocxref" href="#inleiding"><span class="secno">1. </span>Inleiding</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#toepassingsgebied"><span class="secno">1.1 </span>Toepassingsgebied</a></li><li class="tocline"><a class="tocxref" href="#doelgroep"><span class="secno">1.2 </span>Doelgroep</a></li><li class="tocline"><a class="tocxref" href="#leeswijzer"><span class="secno">1.3 </span>Leeswijzer</a></li><li class="tocline"><a class="tocxref" href="#gebruikswijzer"><span class="secno">1.4 </span>Gebruikswijzer</a></li><li class="tocline"><a class="tocxref" href="#wat-is-een-informatiemodel"><span class="secno">1.5 </span>Wat is een informatiemodel</a></li><li class="tocline"><a class="tocxref" href="#typen-informatiemodellen"><span class="secno">1.6 </span>Typen informatiemodellen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#niveau-1-model-van-begrippen"><span class="secno">1.6.1 </span>Niveau 1: Model van begrippen</a></li><li class="tocline"><a class="tocxref" href="#niveau-2-conceptueel-informatiemodel"><span class="secno">1.6.2 </span>Niveau 2: Conceptueel informatiemodel</a></li><li class="tocline"><a class="tocxref" href="#niveau-3-logisch-informatie-of-gegevensmodel"><span class="secno">1.6.3 </span>Niveau 3: Logisch informatie- of gegevensmodel</a></li><li class="tocline"><a class="tocxref" href="#niveau-4-fysiek-of-technisch-gegevens-of-datamodel"><span class="secno">1.6.4 </span>Niveau 4: Fysiek of technisch gegevens- of datamodel</a></li></ol></li><li class="tocline"><a class="tocxref" href="#wat-is-het-metamodel-voor-informatiemodellering"><span class="secno">1.7 </span>Wat is het metamodel voor informatiemodellering</a></li><li class="tocline"><a class="tocxref" href="#uitdrukken-in-uml"><span class="secno">1.8 </span>Uitdrukken in UML</a></li><li class="tocline"><a class="tocxref" href="#uitdrukken-in-linked-data"><span class="secno">1.9 </span>Uitdrukken in Linked Data</a></li><li class="tocline"><a class="tocxref" href="#een-eigen-extensie-op-het-metamodel"><span class="secno">1.10 </span>Een eigen extensie op het metamodel</a></li><li class="tocline"><a class="tocxref" href="#alternatieven"><span class="secno">1.11 </span>Alternatieven</a></li><li class="tocline"><a class="tocxref" href="#beheer"><span class="secno">1.12 </span>Beheer</a></li><li class="tocline"><a class="tocxref" href="#normreferenties"><span class="secno">1.13 </span>Normreferenties</a></li></ol></li><li class="tocline"><a class="tocxref" href="#metamodel-algemeen"><span class="secno">2. </span>Metamodel Algemeen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#structuur-metamodel"><span class="secno">2.1 </span>Structuur metamodel</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#kern"><span class="secno">2.1.1 </span>Kern</a></li><li class="tocline"><a class="tocxref" href="#datatypen"><span class="secno">2.1.2 </span>Datatypen</a></li><li class="tocline"><a class="tocxref" href="#overige"><span class="secno">2.1.3 </span>Overige</a></li></ol></li><li class="tocline"><a class="tocxref" href="#objecttypen-en-attribuutsoorten"><span class="secno">2.2 </span>Objecttypen en attribuutsoorten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecten-en-objecttype"><span class="secno">2.2.1 </span>Objecten en objecttype</a></li><li class="tocline"><a class="tocxref" href="#attribuutsoort-en-een-groepering-ervan"><span class="secno">2.2.2 </span>Attribuutsoort en een groepering ervan</a></li><li class="tocline"><a class="tocxref" href="#gegevensgroep"><span class="secno">2.2.3 </span>Gegevensgroep</a></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype"><span class="secno">2.2.4 </span>Gegevensgroeptype</a></li></ol></li><li class="tocline"><a class="tocxref" href="#relaties"><span class="secno">2.3 </span>Relaties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#generalisatie"><span class="secno">2.3.1 </span>Generalisatie</a></li><li class="tocline"><a class="tocxref" href="#relatiesoort"><span class="secno">2.3.2 </span>Relatiesoort</a></li><li class="tocline"><a class="tocxref" href="#relatieklasse"><span class="secno">2.3.3 </span>Relatieklasse</a></li><li class="tocline"><a class="tocxref" href="#externe-koppeling"><span class="secno">2.3.4 </span>Externe Koppeling</a></li><li class="tocline"><a class="tocxref" href="#relatierol"><span class="secno">2.3.5 </span>Relatierol</a></li></ol></li><li class="tocline"><a class="tocxref" href="#waardelijsten"><span class="secno">2.4 </span>Waardelijsten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#referentielijst"><span class="secno">2.4.1 </span>Referentielijst</a></li><li class="tocline"><a class="tocxref" href="#referentie-element"><span class="secno">2.4.2 </span>Referentie element</a></li><li class="tocline"><a class="tocxref" href="#enumeratie"><span class="secno">2.4.3 </span>Enumeratie</a></li><li class="tocline"><a class="tocxref" href="#enumeratiewaarde"><span class="secno">2.4.4 </span>Enumeratiewaarde</a></li><li class="tocline"><a class="tocxref" href="#codelijst"><span class="secno">2.4.5 </span>Codelijst</a></li></ol></li><li class="tocline"><a class="tocxref" href="#datatypen-0"><span class="secno">2.5 </span>Datatypen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#primitief-datatype"><span class="secno">2.5.1 </span>Primitief datatype</a></li><li class="tocline"><a class="tocxref" href="#gestructureerd-datatype"><span class="secno">2.5.2 </span>Gestructureerd datatype</a></li><li class="tocline"><a class="tocxref" href="#data-element"><span class="secno">2.5.3 </span>Data element</a></li></ol></li><li class="tocline"><a class="tocxref" href="#packages"><span class="secno">2.6 </span>Packages</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#informatiemodel"><span class="secno">2.6.1 </span>Informatiemodel</a></li><li class="tocline"><a class="tocxref" href="#domein"><span class="secno">2.6.2 </span>Domein</a></li><li class="tocline"><a class="tocxref" href="#extern"><span class="secno">2.6.3 </span>Extern</a></li><li class="tocline"><a class="tocxref" href="#view"><span class="secno">2.6.4 </span>View</a></li></ol></li><li class="tocline"><a class="tocxref" href="#overige-modelelementen"><span class="secno">2.7 </span>Overige modelelementen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#constraint"><span class="secno">2.7.1 </span>Constraint</a></li><li class="tocline"><a class="tocxref" href="#keuze"><span class="secno">2.7.2 </span>Keuze</a></li></ol></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens"><span class="secno">2.8 </span>Specificatie metagegevens</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-informatiemodel"><span class="secno">2.8.1 </span>Specificatie metagegevens informatiemodel</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#metagegeven-domein"><span class="secno">2.8.1.1 </span>Metagegeven: <strong>Domein</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-informatiemodel-type"><span class="secno">2.8.1.2 </span>Metagegeven: <strong>Informatiemodel type</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-relatiemodelleringstype"><span class="secno">2.8.1.3 </span>Metagegeven: <strong>Relatiemodelleringstype</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-mim-versie"><span class="secno">2.8.1.4 </span>Metagegeven: <strong>MIM versie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-mim-extensie"><span class="secno">2.8.1.5 </span>Metagegeven: <strong>MIM extensie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-mim-taal"><span class="secno">2.8.1.6 </span>Metagegeven: <strong>MIM taal</strong></a></li></ol></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-modelelementen"><span class="secno">2.8.2 </span>Specificatie metagegevens modelelementen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#metagegeven-naam"><span class="secno">2.8.2.1 </span>Metagegeven: <strong>Naam</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-definitie"><span class="secno">2.8.2.2 </span>Metagegeven: <strong>Definitie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-alias"><span class="secno">2.8.2.3 </span>Metagegeven: <strong>Alias</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-toelichting"><span class="secno">2.8.2.4 </span>Metagegeven: <strong>Toelichting</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-begrip"><span class="secno">2.8.2.5 </span>Metagegeven: <strong>Begrip</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-herkomst"><span class="secno">2.8.2.6 </span>Metagegeven: <strong>Herkomst</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-herkomst-definitie"><span class="secno">2.8.2.7 </span>Metagegeven: <strong>Herkomst definitie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-datum-opname"><span class="secno">2.8.2.8 </span>Metagegeven: <strong>Datum opname</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-identificerend"><span class="secno">2.8.2.9 </span>Metagegeven: <strong>Identificerend</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-indicatie-materiele-historie"><span class="secno">2.8.2.10 </span>Metagegeven: <strong>Indicatie materiële historie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-indicatie-formele-historie"><span class="secno">2.8.2.11 </span>Metagegeven: <strong>Indicatie formele historie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-kardinaliteit"><span class="secno">2.8.2.12 </span>Metagegeven: <strong>Kardinaliteit</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-authentiek"><span class="secno">2.8.2.13 </span>Metagegeven: <strong>Authentiek</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-indicatie-afleidbaar"><span class="secno">2.8.2.14 </span>Metagegeven: <strong>Indicatie afleidbaar</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-indicatie-classificerend"><span class="secno">2.8.2.15 </span>Metagegeven: <strong>Indicatie classificerend</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-mogelijk-geen-waarde"><span class="secno">2.8.2.16 </span>Metagegeven: <strong>mogelijk geen waarde</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-bron"><span class="secno">2.8.2.17 </span>Metagegeven: <strong>bron</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-doel"><span class="secno">2.8.2.18 </span>Metagegeven: <strong>doel</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-unidirectioneel"><span class="secno">2.8.2.19 </span>Metagegeven: <strong>Unidirectioneel</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-aggregatietype"><span class="secno">2.8.2.20 </span>Metagegeven: <strong>Aggregatietype</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-locatie"><span class="secno">2.8.2.21 </span>Metagegeven: <strong>Locatie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-type-domein-van-een-waarde-een-gegeven"><span class="secno">2.8.2.22 </span>Metagegeven: <strong>Type</strong> (domein van een waarde een gegeven)</a></li><li class="tocline"><a class="tocxref" href="#metagegeven-lengte-domein-van-een-waarde-van-een-gegeven"><span class="secno">2.8.2.23 </span>Metagegeven: <strong>Lengte</strong> (domein van een waarde van een gegeven)</a></li><li class="tocline"><a class="tocxref" href="#metagegeven-patroon"><span class="secno">2.8.2.24 </span>Metagegeven: <strong>Patroon</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-formeel-patroon"><span class="secno">2.8.2.25 </span>Metagegeven: <strong>Formeel patroon</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-code"><span class="secno">2.8.2.26 </span>Metagegeven: <strong>code</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-indicatie-abstract-object"><span class="secno">2.8.2.27 </span>Metagegeven: <strong>indicatie abstract object</strong></a></li></ol></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-modelelement-bindingen"><span class="secno">2.8.3 </span>Specificatie metagegevens modelelement bindingen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#metagegeven-attribuut"><span class="secno">2.8.3.1 </span>Metagegeven: <strong>Attribuut</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-gegevensgroep"><span class="secno">2.8.3.2 </span>Metagegeven: <strong>Gegevensgroep</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-gegevensgroeptype"><span class="secno">2.8.3.3 </span>Metagegeven: <strong>Gegevensgroeptype</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-data-element"><span class="secno">2.8.3.4 </span>Metagegeven: <strong>Data element</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-waarde"><span class="secno">2.8.3.5 </span>Metagegeven: <strong>Waarde</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-referentie-element"><span class="secno">2.8.3.6 </span>Metagegeven: <strong>Referentie element</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-constraint"><span class="secno">2.8.3.7 </span>Metagegeven: <strong>Constraint</strong></a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#toegestane-waarden-voor-bepaalde-metadata-gegevens"><span class="secno">2.9 </span>Toegestane waarden voor (bepaalde) metadata gegevens</a></li></ol></li><li class="tocline"><a class="tocxref" href="#metamodel-in-uml"><span class="secno">3. </span>Metamodel in UML</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#structuur-metamodel-in-uml"><span class="secno">3.1 </span>Structuur metamodel in UML</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#kern-0"><span class="secno">3.1.1 </span>Kern</a></li><li class="tocline"><a class="tocxref" href="#datatypen-1"><span class="secno">3.1.2 </span>Datatypen</a></li><li class="tocline"><a class="tocxref" href="#overige-0"><span class="secno">3.1.3 </span>Overige</a></li></ol></li><li class="tocline"><a class="tocxref" href="#nadere-specificatie-metagegevens-in-uml"><span class="secno">3.2 </span>Nadere specificatie metagegevens in UML</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#modellering-metagegevens-voor-objecten-en-attributen-in-uml"><span class="secno">3.2.1 </span>Modellering metagegevens voor objecten en attributen in UML</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-relaties"><span class="secno">3.2.2 </span>Specificatie metagegevens voor relaties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#relatiesoort-leidend-alternatief-1"><span class="secno">3.2.2.1 </span>Relatiesoort leidend (alternatief 1)</a></li><li class="tocline"><a class="tocxref" href="#relatierol-is-leidend-alternatief-2"><span class="secno">3.2.2.2 </span>Relatierol is leidend (alternatief 2)</a></li></ol></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-waardenlijsten"><span class="secno">3.2.3 </span>Specificatie metagegevens voor waardenlijsten</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-datatypen"><span class="secno">3.2.4 </span>Specificatie metagegevens voor datatypen</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-packages"><span class="secno">3.2.5 </span>Specificatie metagegevens voor packages</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-overig"><span class="secno">3.2.6 </span>Specificatie metagegevens - overig</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#specificatie-voor-enumeratie"><span class="secno">3.2.6.1 </span>Specificatie voor Enumeratie</a></li><li class="tocline"><a class="tocxref" href="#specificatie-voor-enumeratiewaarde"><span class="secno">3.2.6.2 </span>Specificatie voor Enumeratiewaarde</a></li><li class="tocline"><a class="tocxref" href="#specificatie-voor-een-constraint"><span class="secno">3.2.6.3 </span>Specificatie voor een Constraint</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#uml-tooling"><span class="secno">3.3 </span>UML Tooling</a></li></ol></li><li class="tocline"><a class="tocxref" href="#metamodel-in-linked-data-ld"><span class="secno">4. </span>Metamodel in Linked Data (LD)</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#ontologisch-metamodel-in-ld"><span class="secno">4.1 </span>Ontologisch metamodel in LD</a></li><li class="tocline"><a class="tocxref" href="#structuur-metamodel-in-ld"><span class="secno">4.2 </span>Structuur metamodel in LD</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#kern-1"><span class="secno">4.2.1 </span>Kern</a></li><li class="tocline"><a class="tocxref" href="#datatypen-2"><span class="secno">4.2.2 </span>Datatypen</a></li><li class="tocline"><a class="tocxref" href="#overige-1"><span class="secno">4.2.3 </span>Overige</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#constraint-0"><span class="secno">4.2.3.1 </span>Constraint</a></li><li class="tocline"><a class="tocxref" href="#keuze-0"><span class="secno">4.2.3.2 </span>Keuze</a></li><li class="tocline"><a class="tocxref" href="#relatierol-0"><span class="secno">4.2.3.3 </span>Relatierol</a></li><li class="tocline"><a class="tocxref" href="#externe-koppeling-0"><span class="secno">4.2.3.4 </span>Externe koppeling</a></li><li class="tocline"><a class="tocxref" href="#packages-0"><span class="secno">4.2.3.5 </span>Packages</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#nadere-specificatie-metagegevens-in-ld"><span class="secno">4.3 </span>Nadere specificatie metagegevens in LD</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#modellering-metagegevens-voor-objecten-en-attributen-in-ld"><span class="secno">4.3.1 </span>Modellering metagegevens voor objecten en attributen in LD</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-relaties-0"><span class="secno">4.3.2 </span>Specificatie metagegevens voor relaties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#relatiesoort-leidend-alternatief-1-0"><span class="secno">4.3.2.1 </span>Relatiesoort leidend (alternatief 1)</a></li><li class="tocline"><a class="tocxref" href="#relatierol-is-leidend-alternatief-2-0"><span class="secno">4.3.2.2 </span>Relatierol is leidend (alternatief 2)</a></li></ol></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-overige-relaties"><span class="secno">4.3.3 </span>Specificatie metagegevens voor overige relaties</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-waardenlijsten-0"><span class="secno">4.3.4 </span>Specificatie metagegevens voor waardenlijsten</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-datatypen-0"><span class="secno">4.3.5 </span>Specificatie metagegevens voor datatypen</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-voor-packages-0"><span class="secno">4.3.6 </span>Specificatie metagegevens voor packages</a></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-overig-0"><span class="secno">4.3.7 </span>Specificatie metagegevens - overig</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#specificatie-voor-enumeratie-0"><span class="secno">4.3.7.1 </span>Specificatie voor Enumeratie</a></li><li class="tocline"><a class="tocxref" href="#specificatie-voor-enumeratiewaarde-0"><span class="secno">4.3.7.2 </span>Specificatie voor Enumeratiewaarde</a></li><li class="tocline"><a class="tocxref" href="#specificatie-voor-een-constraint-0"><span class="secno">4.3.7.3 </span>Specificatie voor een Constraint</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#linked-data-tooling"><span class="secno">4.4 </span>Linked Data Tooling</a></li></ol></li><li class="tocline"><a class="tocxref" href="#afspraken-regels"><span class="secno">5. </span>Afspraken & Regels</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#datatype-n"><span class="secno">5.1 </span>Datatype(n)</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#primitive-datatypes"><span class="secno">5.1.1 </span>Primitive datatypes</a></li><li class="tocline"><a class="tocxref" href="#datatype-zelf-definieren"><span class="secno">5.1.2 </span>Datatype zelf definiëren</a></li><li class="tocline"><a class="tocxref" href="#datatypen-landelijk"><span class="secno">5.1.3 </span>Datatypen landelijk</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gestructureerd-datatype-0"><span class="secno">5.2 </span>Gestructureerd datatype</a></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-0"><span class="secno">5.3 </span>Gegevensgroeptype</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#hergebruik"><span class="secno">5.3.1 </span>Hergebruik</a></li><li class="tocline"><a class="tocxref" href="#gegevensgroep-versus-gestructureerd-datatype"><span class="secno">5.3.2 </span>Gegevensgroep versus Gestructureerd datatype</a></li></ol></li><li class="tocline"><a class="tocxref" href="#keuze-tussen-datatypes-keuze"><span class="secno">5.4 </span>Keuze tussen datatypes (Keuze)</a></li><li class="tocline"><a class="tocxref" href="#domeinwaarden-of-lijsten"><span class="secno">5.5 </span>Domeinwaarden of lijsten</a></li><li class="tocline"><a class="tocxref" href="#abstracte-objecttypes-en-concrete-objecten"><span class="secno">5.6 </span>Abstracte objecttypes en concrete objecten</a></li><li class="tocline"><a class="tocxref" href="#relatieklasse-uitzonderingen"><span class="secno">5.7 </span>Relatieklasse (uitzonderingen)</a></li><li class="tocline"><a class="tocxref" href="#constraint-1"><span class="secno">5.8 </span>Constraint</a></li><li class="tocline"><a class="tocxref" href="#historie"><span class="secno">5.9 </span>Historie</a></li><li class="tocline"><a class="tocxref" href="#afleidbare-gegevens"><span class="secno">5.10 </span>Afleidbare gegevens</a></li><li class="tocline"><a class="tocxref" href="#authentieke-gegevens"><span class="secno">5.11 </span>Authentieke gegevens</a></li><li class="tocline"><a class="tocxref" href="#mogelijk-geen-waarde"><span class="secno">5.12 </span>Mogelijk geen waarde</a></li><li class="tocline"><a class="tocxref" href="#externe-schema-s-her-gebruiken"><span class="secno">5.13 </span>Externe schema’s (her) gebruiken</a></li><li class="tocline"><a class="tocxref" href="#koppelen-met-een-ander-informatiemodel-externe-koppeling"><span class="secno">5.14 </span>Koppelen met een ander informatiemodel (externe koppeling)</a></li><li class="tocline"><a class="tocxref" href="#stelselcatalogus-en-stelselafspraken-voor-basisregistraties"><span class="secno">5.15 </span>Stelselcatalogus en stelselafspraken voor basisregistraties</a></li><li class="tocline"><a class="tocxref" href="#afspraken-rondom-naamgeving-en-definities"><span class="secno">5.16 </span>Afspraken rondom naamgeving en definities</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#uniekheid-van-namen-van-modelelementen"><span class="secno">5.16.1 </span>Uniekheid van namen van modelelementen</a></li><li class="tocline"><a class="tocxref" href="#dezelfde-naam-en-of-definitie-gebruiken-voor-meerdere-modelelementen"><span class="secno">5.16.2 </span>Dezelfde naam en/of definitie gebruiken voor meerdere modelelementen</a></li><li class="tocline"><a class="tocxref" href="#naamgeving-voor-alternatief-1-natuurlijke-taal-die-dichtbij-de-gebruiker-staat"><span class="secno">5.16.3 </span>Naamgeving voor Alternatief 1: natuurlijke taal, die dichtbij de gebruiker staat</a></li><li class="tocline"><a class="tocxref" href="#naamgeving-voor-alternatief-2-ook-leesbaar-door-systemen"><span class="secno">5.16.4 </span>Naamgeving voor Alternatief 2: (ook) leesbaar door systemen</a></li><li class="tocline"><a class="tocxref" href="#naamgeving-voor-metamodel-elementen"><span class="secno">5.16.5 </span>Naamgeving voor metamodel elementen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#verwijzing-van-een-modelelement-naar-een-begrip-uit-het-begrippenkader"><span class="secno">5.17 </span>Verwijzing van een modelelement naar een begrip uit het begrippenkader</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#term-of-uri"><span class="secno">5.17.1 </span>Term of URI</a></li><li class="tocline"><a class="tocxref" href="#verwijzen-naar-0-1-of-meer-begrippen"><span class="secno">5.17.2 </span>Verwijzen naar 0, 1 of meer begrippen</a></li><li class="tocline"><a class="tocxref" href="#definitie-van-een-modelelement-en-de-definitie-van-een-begrip"><span class="secno">5.17.3 </span>Definitie van een modelelement en de definitie van een begrip</a></li></ol></li><li class="tocline"><a class="tocxref" href="#overig"><span class="secno">5.18 </span>Overig</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#volgorde-van-kenmerken"><span class="secno">5.18.1 </span>Volgorde van kenmerken</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#bijlagen"><span class="secno">6. </span>Bijlagen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#diagrammen"><span class="secno">6.1 </span>Diagrammen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-toegepaste-uml-metaclasses"><span class="secno">6.1.1 </span>Overzicht toegepaste UML metaclasses</a></li><li class="tocline"><a class="tocxref" href="#modelelementen-en-metagegevens-als-diagram"><span class="secno">6.1.2 </span>Modelelementen en metagegevens als diagram</a></li></ol></li><li class="tocline"><a class="tocxref" href="#template-naamgeving-conventies"><span class="secno">6.2 </span>Template naamgeving conventies</a></li><li class="tocline"><a class="tocxref" href="#vertaling-naar-engels"><span class="secno">6.3 </span>Vertaling naar engels</a></li><li class="tocline"><a class="tocxref" href="#transformatie-mim-rdfs-owl-shacl"><span class="secno">6.4 </span>Transformatie MIM - RDFS/OWL/SHACL</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#inleiding-0"><span class="secno">6.4.1 </span>Inleiding</a></li><li class="tocline"><a class="tocxref" href="#gebruikte-functies"><span class="secno">6.4.2 </span>Gebruikte functies</a></li><li class="tocline"><a class="tocxref" href="#uri-munting"><span class="secno">6.4.3 </span>URI-munting</a></li><li class="tocline"><a class="tocxref" href="#overzicht"><span class="secno">6.4.4 </span>Overzicht</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#klassen"><span class="secno">6.4.4.1 </span>Klassen</a></li><li class="tocline"><a class="tocxref" href="#eigenschappen"><span class="secno">6.4.4.2 </span>Eigenschappen</a></li><li class="tocline"><a class="tocxref" href="#instanties-datatypen"><span class="secno">6.4.4.3 </span>Instanties (datatypen)</a></li></ol></li><li class="tocline"><a class="tocxref" href="#klassen-0"><span class="secno">6.4.5 </span>Klassen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#transformatie-objecttype"><span class="secno">6.4.5.1 </span>Transformatie: Objecttype</a></li><li class="tocline"><a class="tocxref" href="#transformatie-attribuutsoort"><span class="secno">6.4.5.2 </span>Transformatie: Attribuutsoort</a></li><li class="tocline"><a class="tocxref" href="#transformatie-gegevensgroep"><span class="secno">6.4.5.3 </span>Transformatie: Gegevensgroep</a></li><li class="tocline"><a class="tocxref" href="#transformatie-gegevensgroeptype"><span class="secno">6.4.5.4 </span>Transformatie: Gegevensgroeptype</a></li><li class="tocline"><a class="tocxref" href="#transformatie-generalisatie"><span class="secno">6.4.5.5 </span>Transformatie: Generalisatie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-relatiesoort"><span class="secno">6.4.5.6 </span>Transformatie: Relatiesoort</a></li><li class="tocline"><a class="tocxref" href="#transformatie-relatieklasse"><span class="secno">6.4.5.7 </span>Transformatie: Relatieklasse</a></li><li class="tocline"><a class="tocxref" href="#transformatie-externe-koppeling"><span class="secno">6.4.5.8 </span>Transformatie: Externe koppeling</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#transformatie-referentielijst"><span class="secno">6.4.5.9 </span>Transformatie: Referentielijst</a></li><li class="tocline"><a class="tocxref" href="#transformatie-referentie-element"><span class="secno">6.4.5.10 </span>Transformatie: Referentie element</a></li><li class="tocline"><a class="tocxref" href="#transformatie-enumeratie"><span class="secno">6.4.5.11 </span>Transformatie: Enumeratie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-enumeratiewaarde"><span class="secno">6.4.5.12 </span>Transformatie: Enumeratiewaarde</a></li><li class="tocline"><a class="tocxref" href="#transformatie-codelijst"><span class="secno">6.4.5.13 </span>Transformatie: Codelijst</a></li></ol></li><li class="tocline"><a class="tocxref" href="#datatypen-3"><span class="secno">6.4.6 </span>Datatypen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#transformatie-primitief-datatype"><span class="secno">6.4.6.1 </span>Transformatie: Primitief datatype</a></li><li class="tocline"><a class="tocxref" href="#transformatie-primitief-datatype-standaard-datatypen"><span class="secno">6.4.6.2 </span>Transformatie: Primitief datatype - standaard datatypen</a></li><li class="tocline"><a class="tocxref" href="#transformatie-gestructureerd-datatype"><span class="secno">6.4.6.3 </span>Transformatie: Gestructureerd datatype</a></li><li class="tocline"><a class="tocxref" href="#transformatie-data-element"><span class="secno">6.4.6.4 </span>Transformatie: Data element</a></li><li class="tocline"><a class="tocxref" href="#transformatie-keuze"><span class="secno">6.4.6.5 </span>Transformatie: Keuze</a></li></ol></li><li class="tocline"><a class="tocxref" href="#packages-1"><span class="secno">6.4.7 </span>Packages</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#transformatie-domein"><span class="secno">6.4.7.1 </span>Transformatie: Domein</a></li><li class="tocline"><a class="tocxref" href="#transformatie-extern"><span class="secno">6.4.7.2 </span>Transformatie: Extern</a></li><li class="tocline"><a class="tocxref" href="#transformatie-view"><span class="secno">6.4.7.3 </span>Transformatie: View</a></li></ol></li><li class="tocline"><a class="tocxref" href="#overig-0"><span class="secno">6.4.8 </span>Overig</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#transformatie-constraint"><span class="secno">6.4.8.1 </span>Transformatie: Constraint</a></li></ol></li><li class="tocline"><a class="tocxref" href="#properties"><span class="secno">6.4.9 </span>Properties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#transformatie-naam"><span class="secno">6.4.9.1 </span>transformatie: naam</a></li><li class="tocline"><a class="tocxref" href="#transformatie-alias"><span class="secno">6.4.9.2 </span>transformatie: alias</a></li><li class="tocline"><a class="tocxref" href="#transformatie-begrip"><span class="secno">6.4.9.3 </span>transformatie: begrip</a></li><li class="tocline"><a class="tocxref" href="#transformatie-begripsterm"><span class="secno">6.4.9.4 </span>transformatie: begripsterm</a></li><li class="tocline"><a class="tocxref" href="#transformatie-definitie"><span class="secno">6.4.9.5 </span>transformatie: definitie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-toelichting"><span class="secno">6.4.9.6 </span>transformatie: toelichting</a></li><li class="tocline"><a class="tocxref" href="#transformatie-herkomst"><span class="secno">6.4.9.7 </span>transformatie: herkomst</a></li><li class="tocline"><a class="tocxref" href="#transformatie-herkomst-definitie"><span class="secno">6.4.9.8 </span>transformatie: herkomst definitie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-datum-opname"><span class="secno">6.4.9.9 </span>transformatie: datum opname</a></li><li class="tocline"><a class="tocxref" href="#transformatie-indicatie-materiele-historie"><span class="secno">6.4.9.10 </span>transformatie: indicatie materiële historie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-indicatie-formele-historie"><span class="secno">6.4.9.11 </span>transformatie: indicatie formele historie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-kardinaliteit"><span class="secno">6.4.9.12 </span>transformatie: kardinaliteit</a></li><li class="tocline"><a class="tocxref" href="#transformatie-authentiek"><span class="secno">6.4.9.13 </span>transformatie: authentiek</a></li><li class="tocline"><a class="tocxref" href="#transformatie-indicatie-afleidbaar"><span class="secno">6.4.9.14 </span>transformatie: indicatie afleidbaar</a></li><li class="tocline"><a class="tocxref" href="#transformatie-mogelijk-geen-waarde"><span class="secno">6.4.9.15 </span>transformatie: mogelijk geen waarde</a></li><li class="tocline"><a class="tocxref" href="#transformatie-locatie"><span class="secno">6.4.9.16 </span>transformatie: locatie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-type"><span class="secno">6.4.9.17 </span>transformatie: type</a></li><li class="tocline"><a class="tocxref" href="#transformatie-lengte"><span class="secno">6.4.9.18 </span>transformatie: lengte</a></li><li class="tocline"><a class="tocxref" href="#transformatie-patroon"><span class="secno">6.4.9.19 </span>transformatie: patroon</a></li><li class="tocline"><a class="tocxref" href="#transformatie-formeel-patroon"><span class="secno">6.4.9.20 </span>transformatie: formeel patroon</a></li><li class="tocline"><a class="tocxref" href="#transformatie-unieke-aanduiding"><span class="secno">6.4.9.21 </span>transformatie: unieke aanduiding</a></li><li class="tocline"><a class="tocxref" href="#transformatie-populatie"><span class="secno">6.4.9.22 </span>transformatie: populatie</a></li><li class="tocline"><a class="tocxref" href="#transformatie-kwaliteit"><span class="secno">6.4.9.23 </span>transformatie: kwaliteit</a></li><li class="tocline"><a class="tocxref" href="#transformatie-indicatie-abstract-object"><span class="secno">6.4.9.24 </span>transformatie: indicatie abstract object</a></li><li class="tocline"><a class="tocxref" href="#transformatie-identificerend"><span class="secno">6.4.9.25 </span>transformatie: identificerend</a></li><li class="tocline"><a class="tocxref" href="#transformatie-gegevensgroeptype-eigenschap"><span class="secno">6.4.9.26 </span>transformatie: gegevensgroeptype (eigenschap)</a></li><li class="tocline"><a class="tocxref" href="#transformatie-unidirectioneel"><span class="secno">6.4.9.27 </span>transformatie: unidirectioneel</a></li><li class="tocline"><a class="tocxref" href="#transformatie-bron"><span class="secno">6.4.9.28 </span>transformatie: bron</a></li><li class="tocline"><a class="tocxref" href="#transformatie-doel"><span class="secno">6.4.9.29 </span>transformatie: doel</a></li><li class="tocline"><a class="tocxref" href="#transformatie-aggregatietype"><span class="secno">6.4.9.30 </span>transformatie: aggregatietype</a></li><li class="tocline"><a class="tocxref" href="#transformatie-code"><span class="secno">6.4.9.31 </span>transformatie: code</a></li><li class="tocline"><a class="tocxref" href="#transformatie-specificatie-tekst"><span class="secno">6.4.9.32 </span>transformatie: specificatie-tekst</a></li><li class="tocline"><a class="tocxref" href="#transformatie-specificatie-formeel"><span class="secno">6.4.9.33 </span>transformatie: specificatie-formeel</a></li><li class="tocline"><a class="tocxref" href="#transformatie-attribuut"><span class="secno">6.4.9.34 </span>transformatie: attribuut</a></li><li class="tocline"><a class="tocxref" href="#transformatie-gegevensgroep-eigenschap"><span class="secno">6.4.9.35 </span>transformatie: gegevensgroep (eigenschap)</a></li><li class="tocline"><a class="tocxref" href="#transformatie-indicatie-classificerend"><span class="secno">6.4.9.36 </span>transformatie: indicatie classificerend</a></li></ol></li><li class="tocline"><a class="tocxref" href="#transformatie-vanuit-rdfs-owl-shacl"><span class="secno">6.4.10 </span>Transformatie vanuit RDFS/OWL/SHACL</a></li></ol></li><li class="tocline"><a class="tocxref" href="#versielog"><span class="secno">6.5 </span>Versielog</a></li></ol></li><li class="tocline"><a class="tocxref" href="#references"><span class="secno">A. </span>Referenties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#normatieve-referenties"><span class="secno">A.1 </span>Normatieve referenties</a></li></ol></li></ol></nav><div data-format="markdown"><h1>Colofon en Voorwoord</h1>
<h2>Colofon</h2>
<p>Aan de totstandkoming van deze versie van dit metamodel hebben de volgende inhoudelijke experts
op het gebied van informatiemodellering meegewerkt:</p>
<table>
<thead>
<tr>
<th>Naam</th>
<th>Organisatie</th>
<th>Rol en achtergrond</th>
</tr>
</thead>
<tbody><tr>
<td>Lennart van Bergen</td>
<td>Kadaster</td>
<td>MIM kerngroep. Expert informatiemodellering. Modellenbureau Kadaster</td>
</tr>
<tr>
<td>Thies Mesdag</td>