forked from Geonovum/MIM-Werkomgeving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wv-st-mim11-20191029.html
9558 lines (9407 loc) · 484 KB
/
wv-st-mim11-20191029.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-WV.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-WV",
"specType": "ST",
"format": "markdown",
"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"
}
],
"shortName": "mim10",
"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"
},
"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": 3,
"publishISODate": "2019-10-29T00:00:00.000Z",
"generatedSubtitle": "Werkversie 29 oktober 2019"
}</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://geonovum.github.io/MIM-Werkomgeving/",
"type": [
"TechArticle"
],
"name": "MIM - Metamodel Informatie Modellering",
"inLanguage": "nl",
"license": "https://creativecommons.org/licenses/by/4.0/legalcode",
"datePublished": "2019-10-29",
"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-mim10-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"
}
}
],
"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": "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>
Werkversie <time class="dt-published" datetime="2019-10-29">29 oktober 2019</time></h2>
<dl>
<dt>Deze versie:</dt><dd><a class="u-url" href="https://docs.geostandaarden.nl/mim/wv-st-mim11-20191029/">https://docs.geostandaarden.nl/mim/wv-st-mim11-20191029/</a></dd><dt>Laatst gepubliceerde versie:</dt><dd>geen</dd>
<dt>Vorige versie:</dt><dd><a href="https://docs.geostandaarden.nl/mim/def-st-mim10-20190619/">https://docs.geostandaarden.nl/mim/def-st-mim10-20190619/</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>
<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 'bevroren werkversie' van de standaard. In deze versie is het reviewcommentaar op de vorige versie verwerkt. Deze versie wordt ter review aangeboden.
<!-- Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen door de werkgroep goedgekeurde consultatieversie. -->
</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="#wat-is-een-informatiemodel"><span class="secno">1.4 </span>Wat is een informatiemodel</a></li><li class="tocline"><a class="tocxref" href="#typen-informatiemodellen"><span class="secno">1.5 </span>Typen informatiemodellen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#niveau-1-model-van-begrippen"><span class="secno">1.5.1 </span>Niveau 1: Model van begrippen</a></li><li class="tocline"><a class="tocxref" href="#niveau-2-conceptueel-informatiemodel"><span class="secno">1.5.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.5.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.5.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.6 </span>Wat is het metamodel voor informatiemodellering</a></li><li class="tocline"><a class="tocxref" href="#uitdrukken-in-uml"><span class="secno">1.7 </span>Uitdrukken in UML</a></li><li class="tocline"><a class="tocxref" href="#uitdrukken-in-linked-data"><span class="secno">1.8 </span>Uitdrukken in Linked Data</a></li><li class="tocline"><a class="tocxref" href="#een-eigen-extensie-op-het-metamodel"><span class="secno">1.9 </span>Een eigen extensie op het metamodel</a></li><li class="tocline"><a class="tocxref" href="#alternatieven"><span class="secno">1.10 </span>Alternatieven</a></li><li class="tocline"><a class="tocxref" href="#beheer"><span class="secno">1.11 </span>Beheer</a></li><li class="tocline"><a class="tocxref" href="#normreferenties"><span class="secno">1.12 </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></li><li class="tocline"><a class="tocxref" href="#kern"><span class="secno">2.2 </span>Kern</a></li><li class="tocline"><a class="tocxref" href="#datatypen"><span class="secno">2.3 </span>Datatypen</a></li><li class="tocline"><a class="tocxref" href="#overige"><span class="secno">2.4 </span>Overige</a></li><li class="tocline"><a class="tocxref" href="#betekenis-modelelementen"><span class="secno">2.5 </span>Betekenis modelelementen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttypen-en-attribuutsoorten"><span class="secno">2.5.1 </span>Objecttypen en attribuutsoorten</a></li><li class="tocline"><a class="tocxref" href="#objecten-en-objecttype"><span class="secno">2.5.2 </span>Objecten en objecttype</a></li><li class="tocline"><a class="tocxref" href="#attribuutsoort-en-een-groepering-ervan"><span class="secno">2.5.3 </span>Attribuutsoort en een groepering ervan</a></li><li class="tocline"><a class="tocxref" href="#gegevensgroep"><span class="secno">2.5.4 </span>Gegevensgroep</a></li></ol></li><li class="tocline"><a class="tocxref" href="#relaties"><span class="secno">2.6 </span>Relaties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#generalisatie"><span class="secno">2.6.1 </span>Generalisatie</a></li><li class="tocline"><a class="tocxref" href="#relatiesoort"><span class="secno">2.6.2 </span>Relatiesoort</a></li><li class="tocline"><a class="tocxref" href="#relatieklasse"><span class="secno">2.6.3 </span>Relatieklasse</a></li><li class="tocline"><a class="tocxref" href="#externe-koppeling"><span class="secno">2.6.4 </span>Externe Koppeling</a></li><li class="tocline"><a class="tocxref" href="#relatierol"><span class="secno">2.6.5 </span>Relatierol</a></li></ol></li><li class="tocline"><a class="tocxref" href="#waardenlijsten"><span class="secno">2.7 </span>Waardenlijsten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#referentielijst"><span class="secno">2.7.1 </span>Referentielijst</a></li><li class="tocline"><a class="tocxref" href="#referentie-element"><span class="secno">2.7.2 </span>Referentie element</a></li><li class="tocline"><a class="tocxref" href="#enumeratie"><span class="secno">2.7.3 </span>Enumeratie</a></li><li class="tocline"><a class="tocxref" href="#enumeratiewaarde"><span class="secno">2.7.4 </span>Enumeratiewaarde</a></li><li class="tocline"><a class="tocxref" href="#stereotype-codelist"><span class="secno">2.7.5 </span>Stereotype Codelist</a></li></ol></li><li class="tocline"><a class="tocxref" href="#datatypen-0"><span class="secno">2.8 </span>Datatypen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#primitief-datatype"><span class="secno">2.8.1 </span>Primitief datatype</a></li><li class="tocline"><a class="tocxref" href="#gestructureerd-datatype"><span class="secno">2.8.2 </span>Gestructureerd datatype</a></li><li class="tocline"><a class="tocxref" href="#data-element"><span class="secno">2.8.3 </span>Data element</a></li></ol></li><li class="tocline"><a class="tocxref" href="#packages"><span class="secno">2.9 </span>Packages</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#informatiemodel"><span class="secno">2.9.1 </span>Informatiemodel</a></li><li class="tocline"><a class="tocxref" href="#domein"><span class="secno">2.9.2 </span>Domein</a></li><li class="tocline"><a class="tocxref" href="#extern"><span class="secno">2.9.3 </span>Extern</a></li><li class="tocline"><a class="tocxref" href="#view"><span class="secno">2.9.4 </span>View</a></li></ol></li><li class="tocline"><a class="tocxref" href="#overig"><span class="secno">2.10 </span>Overig</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#identificerend"><span class="secno">2.10.1 </span>Identificerend</a></li><li class="tocline"><a class="tocxref" href="#constraint"><span class="secno">2.10.2 </span>Constraint</a></li><li class="tocline"><a class="tocxref" href="#keuze"><span class="secno">2.10.3 </span>Keuze</a></li></ol></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-informatiemodel"><span class="secno">2.11 </span>Specificatie metagegevens informatiemodel</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#metagegeven-domein"><span class="secno">2.11.1 </span>Metagegeven: <strong>Domein</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-informatiemodel-type"><span class="secno">2.11.2 </span>Metagegeven: <strong>Informatiemodel type</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-relatiemodelleringstype"><span class="secno">2.11.3 </span>Metagegeven: <strong>Relatiemodelleringstype</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-mim-versie"><span class="secno">2.11.4 </span>Metagegeven: <strong>MIM versie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-mim-extensie"><span class="secno">2.11.5 </span>Metagegeven: <strong>MIM extensie</strong></a></li></ol></li><li class="tocline"><a class="tocxref" href="#specificatie-metagegevens-kenmerken"><span class="secno">2.12 </span>Specificatie metagegevens kenmerken</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#metagegeven-naam"><span class="secno">2.12.1 </span>Metagegeven: <strong>Naam</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-definitie"><span class="secno">2.12.2 </span>Metagegeven: <strong>Definitie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-alias"><span class="secno">2.12.3 </span>Metagegeven: <strong>Alias</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-begrip"><span class="secno">2.12.4 </span>Metagegeven: <strong>Begrip</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-herkomst"><span class="secno">2.12.5 </span>Metagegeven: <strong>Herkomst</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-herkomst-definitie"><span class="secno">2.12.6 </span>Metagegeven: <strong>Herkomst definitie</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-datum-opname"><span class="secno">2.12.7 </span>Metagegeven: <strong>Datum opname</strong></a></li><li class="tocline"><a class="tocxref" href="#metagegeven-indicatie-materiele-historie"><span class="secno">2.12.8 </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.12.9 </span>Metagegeven: <strong>Indicatie formele historie</strong></a></li></ol></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"></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"></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></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"></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"></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"><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-0"><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-0"><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-van-een-mim-model-naar-een-rdf-model"><span class="secno">6.4 </span>Transformatie van een MIM model naar een RDF model</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="#overzicht"><span class="secno">6.4.3 </span>Overzicht</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#klassen-0"><span class="secno">6.4.4 </span>Klassen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#datatypen-3"><span class="secno">6.4.5 </span>Datatypen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#packages-0"><span class="secno">6.4.6 </span>Packages</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#overig-1"><span class="secno">6.4.7 </span>Overig</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#properties"><span class="secno">6.4.8 </span>Properties</a><ol class="toc"></ol></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 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>
<td>Kadaster</td>
<td>MIM kerngroep. Expert informatiemodellering. Modellenbureau Kadaster</td>
</tr>
<tr>
<td>Paul Janssen</td>
<td>Geonovum</td>
<td>MIM kerngroep. Expert informatiemodellering. Geostandaarden</td>
</tr>
<tr>
<td>Marco Brattinga</td>
<td>Kadaster</td>
<td>Expert semantisch modelleren</td>
</tr>
<tr>
<td>Dick Krijtenburg</td>
<td>Geonovum</td>
<td>Coördinator beheer MIM.</td>
</tr>
<tr>
<td>Jan van Gelder</td>
<td>Geonovum</td>
<td>Redactie MIM.</td>
</tr>
</tbody></table>
<h2>Voorwoord</h2>
<p>Informatie is een belangrijke motor voor het functioneren van de overheid in Nederland.
Steeds meer wordt er samengewerkt en uitgewisseld tussen verschillende overheidslagen en instanties.
Daarom is het van groot belang dat we hetzelfde verstaan onder de gegevens die we gebruiken en
gemeenschappelijke afspraken maken over de wijze van beschrijven van gegevens en de manier
waarop we deze uitwisselen.
</p>
<p>Bij huidige ontwikkelingen als het Digitaal Stelsel Omgevingswet (DSO) en de Basisregistratie Ondergrond (BRO)
komt duidelijk naar voren dat veel gegevensverzamelingen uit verschillende domeinen bij elkaar
komen in informatievraagstukken. Daarbij komen ook de wereld van de geografische gegevens en de wereld
van de meer administratieve registraties bij elkaar. Dit geeft niet alleen extra mogelijkheden om
informatie slim te combineren maar maakt ook een aantal verschillende uitgangspunten zichtbaar in de
werkwijze binnen de overheid als het gaat om het modelleren van informatie.
</p>
<p>Met het voorliggende MIM-metamodel hebben we een gemeenschappelijk vertrekpunt voor het opstellen van
informatiemodellen. Het voorziet enerzijds in duidelijke afspraken die over meerdere bestuurslagen
heen gaan over het vastleggen van gegevensspecificaties en biedt anderzijds ruimte aan de verschillende
niveaus van modellering.
</p>
<p>Versie 1.1 van MIM biedt naast het al bestaande uitdrukken van het metamodel in UML ook de mogelijkheid
om het metamodel uit te drukken in Linked Data. Hierbij wordt voorzien in en breed geuite behoefte.
We hebben de afgelopen tijd gezien dat MIM breed wordt omarmd binnen de overheid en een plek heeft
veroverd binnen de NORA. Met de uitbreidingen en aanpassingen in deze versie wordt het
toepassingsbereik van MIM aanzienlijk verbreed.
</p>
<p>Dick Krijtenburg (Geonovum)<br>Oktober 2019</p>
</div><section data-format="markdown" id="inleiding"><!--OddPage--><h2 id="x1-inleiding"><span class="secno">1. </span>Inleiding</h2><p>Voor u ligt het metamodel voor het beschrijven van informatiemodellen.
Met het metamodel voor informatiemodellering (MIM) hebben we een gemeenschappelijk
vertrekpunt opgesteld voor het maken van informatiemodellen. Het model bevat
duidelijke afspraken over het vastleggen van gegevensspecificaties en biedt
tegelijkertijd ruimte aan de verschillende niveaus van modellering. Bijzonder
aan het model is dat de afspraken over meerdere bestuurslagen heen gaan.</p><p>Dit document is opgesteld met kennis die is aangedragen door de MIM-community.
Kadaster, Geonovum, VNG Realisatie, DUO en andere partijen hebben hun bijdrage geleverd.</p><section id="toepassingsgebied"><h3 id="x1-1-toepassingsgebied"><span class="secno">1.1 </span>Toepassingsgebied</h3><p>Het metamodel biedt de modelleringstaal waarmee een informatiemodel gemaakt,
gelezen en begrepen kan worden. Het doel hiervan is:</p><ul>
<li>de leesbaarheid en eenduidigheid van informatiemodellen te vergroten;</li>
<li>informatiemodellen op zowel conceptueel als op logisch niveau te kunnen
opstellen (zie <a href="#wat-is-een-informatiemodel">Wat is een informatiemodel</a>) <!-- (zie par. 1.4); --></li>
<li>informatiemodellen goed aan elkaar te kunnen koppelen op conceptueel en
logisch niveau;</li>
<li>tooling te kunnen ontwikkelen en (her)gebruiken voor resp. door alle
partijen die kiezen voor dit metamodel;</li>
<li>kennis uit verschillende organisaties te bundelen;</li>
<li>en in het verlengde hiervan, om op een meer geautomatiseerde werkwijze
sneller en beter voorspelbaar uitwisselingsstandaarden op kunnen stellen. en</li>
<li>om interoperabiliteit tussen registraties te bevorderen.</li>
</ul><p>Voor informatiemodellen die op basis van dit metamodel zijn beschreven geldt:</p><ul>
<li>ze zijn eenduidig te interpreteren en goed te vergelijken;</li>
<li>er kan documentatie mee opgesteld of gegenereerd worden welke geschikt is
voor publicatie;</li>
<li>ze kunnen als basis gebruikt worden voor (bij voorkeur model-driven
generatie van) afgeleide modellen en producten voor een specifiek
toepassingsgebied/domein zoals bijvoorbeeld NEN3610 [<cite><a class="bibref" href="#bib-nen3610">NEN3610</a></cite>] of het gemeentelijke
domein;</li>
<li>ze kunnen als basis gebruikt worden voor (bij voorkeur model-driven
generatie van) afgeleide modellen voor specifieke services en
informatieproducten (implementatieschema’s, registers, validatieservices
e.d.).</li>
</ul></section><section id="doelgroep"><h3 id="x1-2-doelgroep"><span class="secno">1.2 </span>Doelgroep</h3><p>Dit document is primair bestemd voor informatiearchitecten die deze
informatiemodellen maken; informatieanalisten die willen weten wat de betekenis
en definitie van informatieobjecten is, en mensen die model-driven verder werken
op basis van het informatiemodel en er implementaties van maken. Kennis van
informatiemodellering is een vereiste. Enige kennis van UML [<cite><a class="bibref" href="#bib-uml">UML</a></cite>] of [<cite><a class="bibref" href="#bib-linked-data">Linked-Data</a></cite>] is een pré maar niet
noodzakelijk. Dit metamodel richt zich in het bijzonder op de informatievoorziening binnen
het overheidsdomein, al is het ook in bredere context inzetbaar.</p></section><section id="leeswijzer"><h3 id="x1-3-leeswijzer"><span class="secno">1.3 </span>Leeswijzer</h3><p>Het metamodel beschrijven we in vijf hoofdstukken en een bijlage.</p><p>Lees de <a href="#inleiding">Inleiding</a> verder voor inzicht in wat we onder een
informatiemodel en onder een metamodel verstaan, hoe deze de modellen zich
verhouden tot UML en de vier lagen metamodel architectuur van de Object
Management Group [<cite><a class="bibref" href="#bib-omg">OMG</a></cite>], en welke standaarden worden toegepast.</p><p>Het hoofdstuk <a href="#metamodel-algemeen">Metamodel Algemeen</a> bevat de beschrijving van alle
bouwstenen c.q. de modelelementen van het metamodel, in de vorm van definities en specificaties.
De betekenis en toelichting van de modelelementen van het metamodel vormt het materiaal waarmee een uitputtende
modelspecificatie kan worden opgesteld. De afbeeldingen in dit algemene hoofdstuk zijn weliswaar gemaakt in UML, maar het metamodel beperkt
zich zeker niet tot UML. Er zijn aparte hoofdstukken voor de implementatie van MIM in UML en Linked Data.</p><p>Het hoofdstuk <a href="#metamodel-in-uml">Metamodel in UML</a> beschrijft hoe de implementatie van MIM in
[<cite><a class="bibref" href="#bib-uml">UML</a></cite>] er uit ziet. In dit hoofdstuk wordt beschreven hoe het metamodel zich verhoudt tot het UML
metamodel, welke uitbreidingen c.q. verbijzonderingen van het UML metamodel zijn
aangebracht.</p><p>Het hoofdstuk <a href="#metamodel-in-linked-data-ld">Metamodel in Linked Data (LD)</a> beschrijft hoe de implementatie van MIM in
[<cite><a class="bibref" href="#bib-linked-data">Linked-Data</a></cite>] er uit ziet. In dit hoofdstuk wordt beschreven hoe het metamodel zich verhoudt tot het Linked Data
metamodel. Daarbij is een strikte vertaling gemaakt. Dit betekent dat het betreffende Linked Data model alleen als MIM model te gebruiken is. Voor een model dat gebruikt kan worden om daadwerkelijk Linked Data in uit te drukken, is een vertaalslag nodig die beschreven is in de bijlage <a href="#transformatie-van-een-mim-model-naar-een-rdf-model">Transformatie van een MIM model naar een RDF model</a>.</p><p>In het hoofdstuk <a href="#afspraken-regels">Afspraken & Regels</a> gaan we in detail in op een
aantal aspecten. Het is een uitgebreidere toelichting, in aanvulling op het
hoofdstuk <a href="#metamodel-algemeen">Metamodel Algemeen</a>, bestaande uit nadere afspraken, regels, richtlijnen en
aanbevelingen bij het toepassen van het metamodel.</p><p>Er zijn een aantal bijlages, dit zijn hulpmiddelen of aanvullingen op MIM.
</p><ul>
<li>De bijlage <a href="#template-naamgeving-conventies">Template naamgeving conventies</a> verschaft een invulmogelijkheid om eigen naamgevingsconventies te documenteren, per in dit metamodel genoemd modelelement.
</li>
<li>De bijlage <a href="#transformatie-van-een-mim-model-naar-een-rdf-model">Transformatie van een MIM model naar een RDF model</a> beschrijft hoe een MIM model getransformeerd kan worden naar een RDF model dat gebruikt kan worden om daadwerkelijk Linked Data in uit te drukken (op instantie niveau, waarbij dit in overeenstemming is met de specificatie op informatiemodel niveau).
</li>
</ul></section><section id="wat-is-een-informatiemodel"><h3 id="x1-4-wat-is-een-informatiemodel"><span class="secno">1.4 </span>Wat is een informatiemodel</h3><p>Wanneer we informatie over bepaalde onderwerpen willen inwinnen, registreren of uitwisselen, dan is het van belang om deze informatie eerst goed te beschrijven. We doen dit zodat het voor eenieder die met de informatie aan de slag gaat helder en eenduidig is:</p><ul>
<li>waarover de informatie gaat, bv. informatie over een persoon of een gebouw, we noemen dit de objecten, de onderwerpen van gesprek</li>
<li>de eigenschappen/kenmerken zelf, waarvan we informatie bijhouden, bv. de naam van een persoon of het bouwjaar van een gebouw
</li>