-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapshot.html
10948 lines (9424 loc) · 540 KB
/
snapshot.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="nl"><head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta name="generator" content="ReSpec 35.1.1">
<style>
dfn{cursor:pointer}
.dfn-panel{position:absolute;z-index:35;min-width:300px;max-width:500px;padding:.5em .75em;margin-top:.6em;font-family:"Helvetica Neue",sans-serif;font-size:small;background:#fff;background:var(--indextable-hover-bg,#fff);color:#000;color:var(--text,#000);box-shadow:0 1em 3em -.4em rgba(0,0,0,.3),0 0 1px 1px rgba(0,0,0,.05);box-shadow:0 1em 3em -.4em var(--tocsidebar-shadow,rgba(0,0,0,.3)),0 0 1px 1px var(--tocsidebar-shadow,rgba(0,0,0,.05));border-radius:2px}
.dfn-panel:not(.docked)>.caret{position:absolute;top:-9px}
.dfn-panel:not(.docked)>.caret::after,.dfn-panel:not(.docked)>.caret::before{content:"";position:absolute;border:10px solid transparent;border-top:0;border-bottom:10px solid #fff;border-bottom-color:var(--indextable-hover-bg,#fff);top:0}
.dfn-panel:not(.docked)>.caret::before{border-bottom:9px solid #a2a9b1;border-bottom-color:var(--indextable-hover-bg,#a2a9b1)}
.dfn-panel *{margin:0}
.dfn-panel b{display:block;color:#000;color:var(--text,#000);margin-top:.25em}
.dfn-panel ul a[href]{color:#333;color:var(--text,#333)}
.dfn-panel>div{display:flex}
.dfn-panel a.self-link{font-weight:700;margin-right:auto}
.dfn-panel .marker{padding:.1em;margin-left:.5em;border-radius:.2em;text-align:center;white-space:nowrap;font-size:90%;color:#040b1c}
.dfn-panel .marker.dfn-exported{background:#d1edfd;box-shadow:0 0 0 .125em #1ca5f940}
.dfn-panel .marker.idl-block{background:#8ccbf2;box-shadow:0 0 0 .125em #0670b161}
.dfn-panel a:not(:hover){text-decoration:none!important;border-bottom:none!important}
.dfn-panel a[href]:hover{border-bottom-width:1px}
.dfn-panel ul{padding:0}
.dfn-panel li{margin-left:1em}
.dfn-panel.docked{position:fixed;left:.5em;top:unset;bottom:2em;margin:0 auto;max-width:calc(100vw - .75em * 2 - .5em - .2em * 2);max-height:30vh;overflow:auto}
</style>
<script>document.title = respecConfig.title</script>
<title>Informatiemodel Omgevingswet (IMOW) 3.1</title>
<title>Informatiemodel Omgevingswet (IMOW) 3.1</title>
<link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico">
<style>
div.imageinfo img {max-width: none;}
</style>
<style>
/* tabel */
table {
border: 1px solid #005a9c;
border-collapse: collapse;
margin-bottom: 1.2em;
margin-top: 1.2em;
table-layout: auto;
width: 100%;
}
caption {
text-align: left;
font-weight: bold;
line-height: 1.2em;
margin-bottom: 0.3em;
}
tr:nth-child(even) {
background: #f0f6ff;
}
th {
background-color: #005a9c;
border: 1px solid #005a9c;
color: white;
height: 16pt;
padding: 3.5px 1.5mm 3.5px 1.5mm;
vertical-align: top;
word-wrap: break-word;
}
td {
border: 1px solid #005a9c;
height: 16pt;
padding: 3.5px 1.5mm 3.5px 1.5mm;
vertical-align: top;
word-wrap: break-word;
}
</style>
<style id="respec-mainstyle">
@keyframes pop{
0%{transform:scale(1,1)}
25%{transform:scale(1.25,1.25);opacity:.75}
100%{transform:scale(1,1)}
}
a.internalDFN{color:inherit;border-bottom:1px solid #99c;text-decoration:none}
a.externalDFN{color:inherit;border-bottom:1px dotted #ccc;text-decoration:none}
a.bibref{text-decoration:none}
.respec-offending-element:target{animation:pop .25s ease-in-out 0s 1}
.respec-offending-element,a[href].respec-offending-element{text-decoration:red wavy underline}
@supports not (text-decoration:red wavy underline){
.respec-offending-element:not(pre){display:inline-block}
.respec-offending-element{background:url(data:image/gif;base64,R0lGODdhBAADAPEAANv///8AAP///wAAACwAAAAABAADAEACBZQjmIAFADs=) bottom repeat-x}
}
#references :target{background:#eaf3ff;animation:pop .4s ease-in-out 0s 1}
cite .bibref{font-style:normal}
a[href].orcid{padding-left:4px;padding-right:4px}
a[href].orcid>svg{margin-bottom:-2px}
ol.tof,ul.tof{list-style:none outside none}
.caption{margin-top:.5em;font-style:italic}
#issue-summary>ul{column-count:2}
#issue-summary li{list-style:none;display:inline-block}
details.respec-tests-details{margin-left:1em;display:inline-block;vertical-align:top}
details.respec-tests-details>*{padding-right:2em}
details.respec-tests-details[open]{z-index:999999;position:absolute;border:thin solid #cad3e2;border-radius:.3em;background-color:#fff;padding-bottom:.5em}
details.respec-tests-details[open]>summary{border-bottom:thin solid #cad3e2;padding-left:1em;margin-bottom:1em;line-height:2em}
details.respec-tests-details>ul{width:100%;margin-top:-.3em}
details.respec-tests-details>li{padding-left:1em}
.self-link:hover{opacity:1;text-decoration:none;background-color:transparent}
aside.example .marker>a.self-link{color:inherit}
.header-wrapper{display:flex;align-items:baseline;position:relative;left:-.5em}
:is(h2,h3,h4,h5,h6):not(#toch2)+a.self-link{color:inherit;order:-1;position:relative;left:-.7em;font-size:1rem;opacity:.5}
:is(h2,h3,h4,h5,h6)+a.self-link::before{content:"§";text-decoration:none;color:var(--heading-text)}
:is(h2,h3)+a.self-link{top:-.2em}
:is(h4,h5,h6)+a.self-link::before{color:#000}
@media (max-width:767px){
dd{margin-left:0}
}
@media print{
.removeOnSave{display:none}
}
</style>
<style id="respec-nlgov">
img.license{float:left;padding-right:5px}
</style>
<meta name="description" content="Dit document beschrijft het Informatiemodel Omgevingswet (IMOW) dat gebruikt
wordt in de keten 'Van plan tot publicatie' voor het toekennen van
machine-leesbare informatie aan regelingen van omgevingsdocumenten. Het IMOW is
gebaseerd op het
conceptuele model CIM-OW. Het CIM-OW hoort bij de reeks conceptuele modellen
waarop het Digitaal Stelsel Omgevingswet (DSO) is gebaseerd. Het IMOW
specificeert hoe de concepten van het CIM-OW geïmplementeerd moeten worden en
legt vast welke objecten aan het DSO moeten worden aangeleverd.">
<style>
.hljs{--base:#fafafa;--mono-1:#383a42;--mono-2:#686b77;--mono-3:#717277;--hue-1:#0b76c5;--hue-2:#336ae3;--hue-3:#a626a4;--hue-4:#42803c;--hue-5:#ca4706;--hue-5-2:#c91243;--hue-6:#986801;--hue-6-2:#9a6a01}
@media (prefers-color-scheme:dark){
.hljs{--base:#282c34;--mono-1:#abb2bf;--mono-2:#818896;--mono-3:#5c6370;--hue-1:#56b6c2;--hue-2:#61aeee;--hue-3:#c678dd;--hue-4:#98c379;--hue-5:#e06c75;--hue-5-2:#be5046;--hue-6:#d19a66;--hue-6-2:#e6c07b}
}
.hljs{display:block;overflow-x:auto;padding:.5em;color:#383a42;color:var(--mono-1,#383a42);background:#fafafa;background:var(--base,#fafafa)}
.hljs-comment,.hljs-quote{color:#717277;color:var(--mono-3,#717277);font-style:italic}
.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4;color:var(--hue-3,#a626a4)}
.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#ca4706;color:var(--hue-5,#ca4706);font-weight:700}
.hljs-literal{color:#0b76c5;color:var(--hue-1,#0b76c5)}
.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#42803c;color:var(--hue-4,#42803c)}
.hljs-built_in,.hljs-class .hljs-title{color:#9a6a01;color:var(--hue-6-2,#9a6a01)}
.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801;color:var(--hue-6,#986801)}
.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#336ae3;color:var(--hue-2,#336ae3)}
.hljs-emphasis{font-style:italic}
.hljs-strong{font-weight:700}
.hljs-link{text-decoration:underline}
</style>
<style>
.sidelabel {
position: fixed;
-webkit-transform-origin: top right;
right: 100%;
top: 0;
-webkit-transform: rotate(-90deg);
padding: 4px 50px 4px 10px;
color: white;
white-space: nowrap;
z-index: 1;
background-color: #FF0000;
}
</style>
<script type="text/javascript">
/* Any custom mermaid.js scripts will go here. */
</script>
<style>
/* Any custom mermaid.js scripts will go here. */
}
</style>
<script id="initialUserConfig" type="application/json">{
"nl_organisationName": "Geonovum",
"nl_organisationPublishURL": "https://docs.geostandaarden.nl/",
"logos": [
{
"src": "https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg",
"alt": "Geonovum",
"id": "Geonovum",
"height": 67,
"width": 132,
"url": "https://www.geonovum.nl/geo-standaarden"
}
],
"postProcess": [
null
],
"latestVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"shortName",
"/"
],
"thisVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"specStatus",
"-",
"specType",
"-",
"shortName",
"-",
"publishDate"
],
"prevVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"previousMaturity",
"-",
"specType",
"-",
"shortName",
"-",
"previousPublishDate"
],
"useLogo": true,
"useLabel": true,
"license": "cc-by",
"addSectionLinks": true,
"localizationStrings": {
"en": {
"wv": "Editor's draft",
"cv": "Candidate recommendation",
"vv": "Proposed recommendation",
"def": "Recommendation",
"ld": "Living document",
"basis": "Document",
"no": "Norm",
"st": "Standard",
"im": "Information model",
"pr": "Practical guideline",
"hr": "Guide",
"wa": "Work process agreement",
"al": "General",
"bd": "Governance documentation",
"bp": "Best practice"
},
"nl": {
"wv": "Werkversie",
"cv": "Consultatieversie",
"vv": "Versie ter vaststelling",
"def": "Vastgestelde versie",
"ld": "Levend document",
"basis": "Document",
"no": "Norm",
"st": "Standaard",
"im": "Informatiemodel",
"pr": "Praktijkrichtlijn",
"hr": "Handreiking",
"wa": "Werkafspraak",
"al": "Algemeen",
"bd": "Beheerdocumentatie",
"bp": "Best practice"
}
},
"sotdText": {
"nl": {
"sotd": "Status van dit document",
"def": "Dit is de definitieve versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"wv": "Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen stabiel document.",
"cv": "Dit is een consultatieversie. Commentaar over dit document kan gestuurd worden naar ",
"vv": "Dit is de definitieve conceptversie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"basis": "Dit is een document zonder officiële status.",
"ld": "Dit is een levend document dat regelmatig gewijzigd wordt."
},
"en": {
"sotd": "Status of this document",
"def": "This is the definitive version of this document. Edits resulting from consultations have been applied.",
"wv": "This is a working draft that can be changed, removed or replaced by other documents at any time. It is not a stable document.",
"cv": "This is a stable draft, published for public comment. Comments regarding this document may be sent to ",
"vv": "This is the final draft of this document. Edits resulting from consultations have been applied.",
"basis": "This document has no official standing.",
"ld": "This is a living document, which is updated regularly."
}
},
"labelColor": {
"def": "#045D9F",
"wv": "#FF0000",
"cv": "#045D9F",
"vv": "#045D9F",
"basis": "#80CC28",
"ld": "#80CC28"
},
"licenses": {
"cc0": {
"name": "Creative Commons 0 Public Domain Dedication",
"short": "CC0",
"url": "https://creativecommons.org/publicdomain/zero/1.0/",
"image": "https://tools.geostandaarden.nl/respec/style/logos/CC-Licentie.svg"
},
"cc-by": {
"name": "Creative Commons Attribution 4.0 International Public License",
"short": "CC-BY",
"url": "https://creativecommons.org/licenses/by/4.0/legalcode",
"image": "https://tools.geostandaarden.nl/respec/style/logos/cc-by.svg"
},
"cc-by-nd": {
"name": "Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal",
"short": "CC-BY-ND",
"url": "https://creativecommons.org/licenses/by-nd/4.0/legalcode.nl",
"image": "https://tools.geostandaarden.nl/respec/style/logos/cc-by-nd.svg"
}
},
"localBiblio": {
"Basisgeometrie": {
"id": "Basisgeometrie",
"title": "Basisgeometrie",
"href": "https://docs.geostandaarden.nl/nen3610/def-st-basisgeometrie-20240607/",
"status": "Definitief",
"publisher": "Geonovum",
"date": "7 juni 2024"
},
"MIM12": {
"id": "MIM12",
"title": "MIM - Metamodel Informatie Modellering (Versie 1.2)",
"href": "https://docs.geostandaarden.nl/mim/def-st-mim-20240613/",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2024-06-13"
},
"CIMOP": {
"id": "CIMOP",
"title": "Conceptueel Informatiemodel Officiële Publicaties binnen de context van de DSO-LV: versie 1.0",
"href": "https://docs.geostandaarden.nl/dso/def-im-dso-cim-op-20240123",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2024-01-23"
},
"CIMOW": {
"id": "CIMOW",
"title": "Conceptueel Informatiemodel Omgevingswet (CIMOW)",
"href": "https://geonovum.github.io/TPOD/CIMOW/CIMOW_v2.1.0.pdf",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2022-01-07"
},
"LVBBBHKV13": {
"id": "LVBBBHKV13",
"title": "LVBB Bronhouderkoppelvlak 1.3",
"href": "https://standaarden.overheid.nl/stop/lvbb",
"status": "In ontwikkeling",
"publisher": "KOOP"
},
"IMOW": {
"id": "IMOW",
"title": "Informatiemodel Omgevingswet (IMOW)",
"href": "https://geonovum.github.io/TPOD/CIMOW/IMOW_v2.0.2.pdf",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2023-01-09"
},
"NEN3610_2022": {
"id": "NEN3610-2022",
"title": "Basismodel geo-informatie",
"href": "https://www.nen.nl/nen-3610-2022-nl-296137",
"status": "Definitief",
"publisher": "NEN",
"date": "2020-06-20"
},
"STOP14": {
"id": "STOP14",
"title": "Standaard Officiële Publicaties 1.4.0",
"href": "https://standaarden.overheid.nl/stop/doc/1.4.0/",
"status": "Ter vastsstelling",
"publisher": "KOOP"
}
},
"title": "Informatiemodel Omgevingswet (IMOW) 3.1",
"specStatus": "wv",
"specType": "IM",
"pubDomain": "ow",
"shortName": "imow",
"publishVersion": "3.1.0",
"previousVersion": "3.0.1",
"previousPublishDate": "2023-12-27",
"previousMaturity": "def",
"editors": [
{
"name": "TPOD team",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"authors": [
{
"name": "TPOD team",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"github": "https://github.com/Geonovum/ow-IMOW"
}</script>
<link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2016/base.css"></head>
<body class="h-entry informative toc-inline"><div class="head">
<a class="logo" href="https://www.geonovum.nl/geo-standaarden"><img alt="Geonovum" height="67" id="Geonovum" src="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg" width="132">
</a> <h1 id="title" class="title">Informatiemodel Omgevingswet (IMOW) 3.1</h1>
<h2>
Geonovum Informatiemodel<br>
Werkversie
<time class="dt-published" datetime="2024-10-17">17 oktober 2024</time>
</h2>
<dl>
<dt>Laatste werkversie:</dt><dd><a href="https://geonovum.github.io/ow-IMOW/">https://geonovum.github.io/ow-IMOW/</a></dd>
<dt>Redacteur:</dt>
<dd class="editor p-author h-card vcard">
<span class="p-name fn">TPOD team</span> (<a class="p-org org h-org" href="https://www.geonovum.nl">Geonovum</a>)
</dd>
<dt>Auteur:</dt><dd class="editor p-author h-card vcard">
<span class="p-name fn">TPOD team</span> (<a class="p-org org h-org" href="https://www.geonovum.nl">Geonovum</a>)
</dd>
<dt>Doe mee:</dt><dd>
<a href="https://github.com/Geonovum/ow-IMOW/">GitHub Geonovum/ow-IMOW</a>
</dd><dd>
<a href="https://github.com/Geonovum/ow-IMOW/issues/">Dien een melding in</a>
</dd><dd>
<a href="https://github.com/Geonovum/ow-IMOW/commits/">Revisiehistorie</a>
</dd><dd>
<a href="https://github.com/Geonovum/ow-IMOW/pulls/">Pull requests</a>
</dd>
</dl>
<p class="copyright">
Dit document valt onder de volgende licentie:
<a rel="license" href="https://creativecommons.org/licenses/by/4.0/legalcode" class="subfoot"><img class="license" src="https://tools.geostandaarden.nl/respec/style/logos/cc-by.svg" alt="Logo Creative Commons Attribution 4.0 International Public License"><br> Creative Commons Attribution 4.0 International Public License</a>
</p>
<hr title="Separator for header">
</div>
<section id="abstract" class="introductory"><h2>Samenvatting</h2><p>Dit document beschrijft het Informatiemodel Omgevingswet (IMOW) dat gebruikt
wordt in de keten 'Van plan tot publicatie' voor het toekennen van
machine-leesbare informatie aan regelingen van omgevingsdocumenten. Het IMOW is
gebaseerd op het
conceptuele model CIM-OW. Het CIM-OW hoort bij de reeks conceptuele modellen
waarop het Digitaal Stelsel Omgevingswet (DSO) is gebaseerd. Het IMOW
specificeert hoe de concepten van het CIM-OW geïmplementeerd moeten worden en
legt vast welke objecten aan het DSO moeten worden aangeleverd.</p>
</section><nav id="toc"><h2 class="introductory" id="inhoudsopgave">Inhoudsopgave</h2><ol class="toc"><li class="tocline"><a class="tocxref" href="#abstract">Samenvatting</a></li><li class="tocline"><a class="tocxref" href="#H01-Inleiding"><bdi class="secno">1. </bdi>Inleiding</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#H01-context"><bdi class="secno">1.1 </bdi>Context standaard</a></li><li class="tocline"><a class="tocxref" href="#toepassingsgebied"><bdi class="secno">1.2 </bdi>Toepassingsgebied</a></li><li class="tocline"><a class="tocxref" href="#begrippen"><bdi class="secno">1.3 </bdi>Begrippen</a></li><li class="tocline"><a class="tocxref" href="#uitgangspunten-van-modellering"><bdi class="secno">1.4 </bdi>Uitgangspunten van modellering</a></li><li class="tocline"><a class="tocxref" href="#gegevensdefinitie-en-uml-diagrammen"><bdi class="secno">1.5 </bdi>Gegevensdefinitie en UML-Diagrammen</a></li><li class="tocline"><a class="tocxref" href="#H01-Leeswijzer"><bdi class="secno">1.6 </bdi>Leeswijzer</a></li></ol></li><li class="tocline"><a class="tocxref" href="#cat"><bdi class="secno">2. </bdi>Gegevensdefinitie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_package_Aanlevering"><bdi class="secno">2.1 </bdi>Domein Aanlevering</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_D6C15DB1_4E38_4908_B130_11EA3C77AC79"><bdi class="secno">2.1.1 </bdi> Aanlevering - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen"><bdi class="secno">2.1.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Aanlevering_OWbestandverwijzing"><bdi class="secno">2.1.2.1 </bdi> OW-bestandverwijzing</a></li><li class="tocline"><a class="tocxref" href="#global_class_Aanlevering_OWBestand"><bdi class="secno">2.1.2.2 </bdi> OW-Bestand</a></li><li class="tocline"><a class="tocxref" href="#global_class_Aanlevering_OWmanifest"><bdi class="secno">2.1.2.3 </bdi> OW-manifest</a></li><li class="tocline"><a class="tocxref" href="#global_class_Aanlevering_OWaanlevering"><bdi class="secno">2.1.2.4 </bdi> OW-aanlevering</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details"><bdi class="secno">2.1.3 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details"><bdi class="secno">2.1.3.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Aanlevering_OWbestandverwijzing"><bdi class="secno">2.1.3.1.1 </bdi> OW-bestandverwijzing</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Aanlevering_OWBestand"><bdi class="secno">2.1.3.1.2 </bdi> OW-Bestand</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Aanlevering_OWmanifest"><bdi class="secno">2.1.3.1.3 </bdi> OW-manifest</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Aanlevering_OWaanlevering"><bdi class="secno">2.1.3.1.4 </bdi> OW-aanlevering</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_OWobject"><bdi class="secno">2.2 </bdi>Domein OW-object</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_97D11E5C_222E_4885_AD87_2F92616ED77A"><bdi class="secno">2.2.1 </bdi> OW-object - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_FE9C9DCE_C253_4f81_8D60_DB454C471FF5"><bdi class="secno">2.2.2 </bdi> OP-objectAnnotatie - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-0"><bdi class="secno">2.2.3 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_OWobject_OWobject"><bdi class="secno">2.2.3.1 </bdi> OW-object</a></li><li class="tocline"><a class="tocxref" href="#global_class_OWobject_OPobjectAnnotatie"><bdi class="secno">2.2.3.2 </bdi> OP-objectAnnotatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gestructureerde-datatypen"><bdi class="secno">2.2.4 </bdi>Gestructureerde datatypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_OWobject_NEN3610ID"><bdi class="secno">2.2.4.1 </bdi>Gestructureerd datatype NEN3610ID</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-data-elementen"><bdi class="secno">2.2.4.1.1 </bdi>Overzicht data elementen </a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-0"><bdi class="secno">2.2.5 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-0"><bdi class="secno">2.2.5.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_OWobject_OWobject"><bdi class="secno">2.2.5.1.1 </bdi> OW-object</a></li><li class="tocline"><a class="tocxref" href="#detail_class_OWobject_OPobjectAnnotatie"><bdi class="secno">2.2.5.1.2 </bdi> OP-objectAnnotatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gestructureerde-datatypen-0"><bdi class="secno">2.2.5.2 </bdi>Gestructureerde datatypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_OWobject_NEN3610ID"><bdi class="secno">2.2.5.2.1 </bdi>Gestructureerd datatype NEN3610ID</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Artikelstructuur"><bdi class="secno">2.3 </bdi>Domein Artikelstructuur</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_C66AEA1E_A7E2_4ab7_BEAA_00DD0F75A4B2"><bdi class="secno">2.3.1 </bdi> Artikelstructuur - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-1"><bdi class="secno">2.3.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Regeltekst"><bdi class="secno">2.3.2.1 </bdi> Regeltekst</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_ActiviteitLocatieaanduiding"><bdi class="secno">2.3.2.2 </bdi> ActiviteitLocatieaanduiding</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Instructieregel"><bdi class="secno">2.3.2.3 </bdi> Instructieregel</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingswaarderegel"><bdi class="secno">2.3.2.4 </bdi> Omgevingswaarderegel</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_RegelVoorIedereen"><bdi class="secno">2.3.2.5 </bdi> RegelVoorIedereen</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_JuridischeRegel"><bdi class="secno">2.3.2.6 </bdi> JuridischeRegel</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Regelingsgebied"><bdi class="secno">2.3.2.7 </bdi> Regelingsgebied</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Norm"><bdi class="secno">2.3.2.8 </bdi> Norm</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingsnorm"><bdi class="secno">2.3.2.9 </bdi> Omgevingsnorm</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingswaarde"><bdi class="secno">2.3.2.10 </bdi> Omgevingswaarde</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Activiteit"><bdi class="secno">2.3.2.11 </bdi> Activiteit</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Pons"><bdi class="secno">2.3.2.12 </bdi> Pons</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Gebiedsaanwijzing"><bdi class="secno">2.3.2.13 </bdi> Gebiedsaanwijzing</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptypen"><bdi class="secno">2.3.3 </bdi>Gegevensgroeptypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Normwaarde"><bdi class="secno">2.3.3.1 </bdi>Gegevensgroep Normwaarde</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-1"><bdi class="secno">2.3.4 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-1"><bdi class="secno">2.3.4.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Regeltekst"><bdi class="secno">2.3.4.1.1 </bdi> Regeltekst</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_ActiviteitLocatieaanduiding"><bdi class="secno">2.3.4.1.2 </bdi> ActiviteitLocatieaanduiding</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Instructieregel"><bdi class="secno">2.3.4.1.3 </bdi> Instructieregel</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingswaarderegel"><bdi class="secno">2.3.4.1.4 </bdi> Omgevingswaarderegel</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_RegelVoorIedereen"><bdi class="secno">2.3.4.1.5 </bdi> RegelVoorIedereen</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_JuridischeRegel"><bdi class="secno">2.3.4.1.6 </bdi> JuridischeRegel</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Regelingsgebied"><bdi class="secno">2.3.4.1.7 </bdi> Regelingsgebied</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Norm"><bdi class="secno">2.3.4.1.8 </bdi> Norm</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingsnorm"><bdi class="secno">2.3.4.1.9 </bdi> Omgevingsnorm</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingswaarde"><bdi class="secno">2.3.4.1.10 </bdi> Omgevingswaarde</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Activiteit"><bdi class="secno">2.3.4.1.11 </bdi> Activiteit</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Pons"><bdi class="secno">2.3.4.1.12 </bdi> Pons</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Gebiedsaanwijzing"><bdi class="secno">2.3.4.1.13 </bdi> Gebiedsaanwijzing</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-details"><bdi class="secno">2.3.4.2 </bdi>Gegevensgroeptype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Normwaarde"><bdi class="secno">2.3.4.2.1 </bdi>Gegevensgroeptype Normwaarde</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Vrijetekststructuur"><bdi class="secno">2.4 </bdi>Domein Vrijetekststructuur</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_02D5F2C5_DF92_4981_80BC_F6FECA27C313"><bdi class="secno">2.4.1 </bdi> Vrijetekststructuur - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-2"><bdi class="secno">2.4.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Vrijetekststructuur_Divisie"><bdi class="secno">2.4.2.1 </bdi> Divisie</a></li><li class="tocline"><a class="tocxref" href="#global_class_Vrijetekststructuur_Divisietekst"><bdi class="secno">2.4.2.2 </bdi> Divisietekst</a></li><li class="tocline"><a class="tocxref" href="#global_class_Vrijetekststructuur_Tekstdeel"><bdi class="secno">2.4.2.3 </bdi> Tekstdeel</a></li><li class="tocline"><a class="tocxref" href="#global_class_Vrijetekststructuur_Hoofdlijn"><bdi class="secno">2.4.2.4 </bdi> Hoofdlijn</a></li></ol></li><li class="tocline"><a class="tocxref" href="#keuzen"><bdi class="secno">2.4.3 </bdi>Keuzen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Vrijetekststructuur_DivisieOfDivisietekst"><bdi class="secno">2.4.3.1 </bdi> DivisieOfDivisietekst</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-2"><bdi class="secno">2.4.4 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-2"><bdi class="secno">2.4.4.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Vrijetekststructuur_Tekstdeel"><bdi class="secno">2.4.4.1.1 </bdi> Tekstdeel</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Vrijetekststructuur_Hoofdlijn"><bdi class="secno">2.4.4.1.2 </bdi> Hoofdlijn</a></li></ol></li><li class="tocline"><a class="tocxref" href="#keuze"><bdi class="secno">2.4.4.2 </bdi>Keuze </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Vrijetekststructuur_DivisieOfDivisietekst"><bdi class="secno">2.4.4.2.1 </bdi>Keuze DivisieOfDivisietekst</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Locatie"><bdi class="secno">2.5 </bdi>Domein Locatie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_31E6C7D5_E55E_4916_92E7_D35A8E1C6E03"><bdi class="secno">2.5.1 </bdi> Locatie - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-3"><bdi class="secno">2.5.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Locatie"><bdi class="secno">2.5.2.1 </bdi> Locatie</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Punt"><bdi class="secno">2.5.2.2 </bdi> Punt</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Lijn"><bdi class="secno">2.5.2.3 </bdi> Lijn</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Gebied"><bdi class="secno">2.5.2.4 </bdi> Gebied</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Ambtsgebied"><bdi class="secno">2.5.2.5 </bdi> Ambtsgebied</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Puntengroep"><bdi class="secno">2.5.2.6 </bdi> Puntengroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Lijnengroep"><bdi class="secno">2.5.2.7 </bdi> Lijnengroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Gebiedengroep"><bdi class="secno">2.5.2.8 </bdi> Gebiedengroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Geometrie"><bdi class="secno">2.5.2.9 </bdi> Geometrie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptypen-0"><bdi class="secno">2.5.3 </bdi>Gegevensgroeptypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Locatie_BestuurlijkeGrenzenVerwijzing"><bdi class="secno">2.5.3.1 </bdi>Gegevensgroep BestuurlijkeGrenzenVerwijzing</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-3"><bdi class="secno">2.5.4 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-3"><bdi class="secno">2.5.4.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Locatie"><bdi class="secno">2.5.4.1.1 </bdi> Locatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Punt"><bdi class="secno">2.5.4.1.2 </bdi> Punt</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Lijn"><bdi class="secno">2.5.4.1.3 </bdi> Lijn</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Gebied"><bdi class="secno">2.5.4.1.4 </bdi> Gebied</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Puntengroep"><bdi class="secno">2.5.4.1.5 </bdi> Puntengroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Lijnengroep"><bdi class="secno">2.5.4.1.6 </bdi> Lijnengroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Gebiedengroep"><bdi class="secno">2.5.4.1.7 </bdi> Gebiedengroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Geometrie"><bdi class="secno">2.5.4.1.8 </bdi> Geometrie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-details-0"><bdi class="secno">2.5.4.2 </bdi>Gegevensgroeptype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_BestuurlijkeGrenzenVerwijzing"><bdi class="secno">2.5.4.2.1 </bdi>Gegevensgroeptype BestuurlijkeGrenzenVerwijzing</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Kaart"><bdi class="secno">2.6 </bdi>Domein Kaart</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_619D1C05_75E9_4a29_BBFB_F6454B1E4EC7"><bdi class="secno">2.6.1 </bdi> Kaart - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-4"><bdi class="secno">2.6.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Kaart_Kaart"><bdi class="secno">2.6.2.1 </bdi> Kaart</a></li><li class="tocline"><a class="tocxref" href="#global_class_Kaart_Kaartlaag"><bdi class="secno">2.6.2.2 </bdi> Kaartlaag</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptypen-1"><bdi class="secno">2.6.3 </bdi>Gegevensgroeptypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Kaart_Kaartextent"><bdi class="secno">2.6.3.1 </bdi>Gegevensgroep Kaartextent</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-4"><bdi class="secno">2.6.4 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-4"><bdi class="secno">2.6.4.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Kaart_Kaart"><bdi class="secno">2.6.4.1.1 </bdi> Kaart</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Kaart_Kaartlaag"><bdi class="secno">2.6.4.1.2 </bdi> Kaartlaag</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-details-1"><bdi class="secno">2.6.4.2 </bdi>Gegevensgroeptype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Kaart_Kaartextent"><bdi class="secno">2.6.4.2.1 </bdi>Gegevensgroeptype Kaartextent</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Waardelijsten"><bdi class="secno">2.7 </bdi>Domein Waardelijsten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#codelijsten"><bdi class="secno">2.7.1 </bdi>Codelijsten </a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#lis"><bdi class="secno">3. </bdi>Inhoud van waardelijsten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#codelijst-inhoud"><bdi class="secno">3.1 </bdi>Codelijst inhoud </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Activiteitengroep"><bdi class="secno">3.1.1 </bdi>Codelijst details Activiteitengroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Activiteitregelkwalificatie"><bdi class="secno">3.1.2 </bdi>Codelijst details Activiteitregelkwalificatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Adressaat"><bdi class="secno">3.1.3 </bdi>Codelijst details Adressaat</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Eenheid"><bdi class="secno">3.1.4 </bdi>Codelijst details Eenheid</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Gebiedsaanwijzinggroep"><bdi class="secno">3.1.5 </bdi>Codelijst details Gebiedsaanwijzinggroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Idealisatie"><bdi class="secno">3.1.6 </bdi>Codelijst details Idealisatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Instrument"><bdi class="secno">3.1.7 </bdi>Codelijst details Instrument</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Omgevingsnormgroep"><bdi class="secno">3.1.8 </bdi>Codelijst details Omgevingsnormgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Omgevingswaardegroep"><bdi class="secno">3.1.9 </bdi>Codelijst details Omgevingswaardegroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Thema"><bdi class="secno">3.1.10 </bdi>Codelijst details Thema</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_TypeGebiedsaanwijzing"><bdi class="secno">3.1.11 </bdi>Codelijst details TypeGebiedsaanwijzing</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Waardelijsten_Typenorm"><bdi class="secno">3.1.12 </bdi>Codelijst details Typenorm</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#H04-Implementatie"><bdi class="secno">4. </bdi>Technische implementatie IMOW</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#H04-OW-aanlevering"><bdi class="secno">4.1 </bdi>OW-aanlevering en OW-manifest</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#H04-aanlevereisen"><bdi class="secno">4.1.1 </bdi>Het aanleveren van OW-objecten in OW-bestanden</a></li><li class="tocline"><a class="tocxref" href="#het-aanleveren-van-geometrie-objecten"><bdi class="secno">4.1.2 </bdi>Het aanleveren van Geometrie-objecten</a></li></ol></li><li class="tocline"><a class="tocxref" href="#regels-voor-ow-aanlevering"><bdi class="secno">4.2 </bdi>Regels voor OW-Aanlevering</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#H04-Identificatie"><bdi class="secno">4.2.1 </bdi>Identificatie van OW-objecten</a></li><li class="tocline"><a class="tocxref" href="#H04-Waardelijsten"><bdi class="secno">4.2.2 </bdi>Waardelijsten</a></li><li class="tocline"><a class="tocxref" href="#H04-Toekennen"><bdi class="secno">4.2.3 </bdi>Toekennen van OW-objecten aan regelingen</a></li><li class="tocline"><a class="tocxref" href="#H04-Verwijzen"><bdi class="secno">4.2.4 </bdi>Verwijzingen tussen OW-objecten</a></li><li class="tocline"><a class="tocxref" href="#H04-FunctioneleStructuur"><bdi class="secno">4.2.5 </bdi>Tophaken en de bovenliggendeActiviteit</a></li><li class="tocline"><a class="tocxref" href="#H04-TijdelijkRegelingdelen"><bdi class="secno">4.2.6 </bdi>Tijdelijk regelingdelen</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#H05-GebruikIMOW"><bdi class="secno">5. </bdi>Regels voor de OW-aanlevering als onderdeel van een aanlevering aan de LVBB</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#basisprincipe-van-de-ow-aanlevering"><bdi class="secno">5.1 </bdi>Basisprincipe van de OW-aanlevering</a></li><li class="tocline"><a class="tocxref" href="#een-ow-aanlevering-aan-de-lvbb"><bdi class="secno">5.2 </bdi>Een OW-aanlevering aan de LVBB</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#een-nieuw-ow-object"><bdi class="secno">5.2.1 </bdi>Een nieuw OW-object</a></li><li class="tocline"><a class="tocxref" href="#een-ow-object-wijzigen"><bdi class="secno">5.2.2 </bdi>Een OW-object wijzigen</a></li><li class="tocline"><a class="tocxref" href="#H05-OW-eindigen"><bdi class="secno">5.2.3 </bdi>Een OW-object beëindigen</a></li><li class="tocline"><a class="tocxref" href="#resultaat-ow-aanlevering"><bdi class="secno">5.2.4 </bdi>Resultaat OW-aanlevering</a></li></ol></li><li class="tocline"><a class="tocxref" href="#05-ow-aanlevering"><bdi class="secno">5.3 </bdi>Het gebruik van een OW-aanlevering</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#ow-aanlevering-bij-een-besluit-dat-een-regeling-initieert-of-wijzigt"><bdi class="secno">5.3.1 </bdi>OW-aanlevering bij een besluit dat een regeling initieert of wijzigt</a></li><li class="tocline"><a class="tocxref" href="#ow-aanlevering-bij-rectificatie-revisie-of-mededeling-uitspraak-van-de-rechter"><bdi class="secno">5.3.2 </bdi>OW-aanlevering bij rectificatie, revisie of mededeling uitspraak van de rechter</a></li><li class="tocline"><a class="tocxref" href="#H05-IntrekkenRegeling"><bdi class="secno">5.3.3 </bdi>Het intrekken van een regeling</a></li><li class="tocline"><a class="tocxref" href="#het-aanleveren-van-een-ontwerpbesluit"><bdi class="secno">5.3.4 </bdi>Het aanleveren van een Ontwerpbesluit</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#H06-OPinIMOW"><bdi class="secno">6. </bdi>Onderdelen van STOP relevant voor IMOW</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#H06-ConsolidatieInformatie"><bdi class="secno">6.1 </bdi>ConsolidatieInformatie</a></li><li class="tocline"><a class="tocxref" href="#H06-GIO"><bdi class="secno">6.2 </bdi>GIO’s en Norm GIO’s</a></li><li class="tocline"><a class="tocxref" href="#H06-GML"><bdi class="secno">6.3 </bdi>Regels voor het aanleveren van GML</a></li></ol></li><li class="tocline"><a class="tocxref" href="#HA-Changelog"><bdi class="secno">A. </bdi>Bijlage: versiehistorie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#omschrijving-wijzigingen-in-versie-3-1-0"><bdi class="secno">A.1 </bdi>omschrijving wijzigingen in versie 3.1.0</a></li><li class="tocline"><a class="tocxref" href="#eerdere-wijzigingen"><bdi class="secno">A.2 </bdi>Eerdere wijzigingen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#references"><bdi class="secno">B. </bdi>Referenties</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#normatieve-referenties"><bdi class="secno">B.1 </bdi>Normatieve referenties</a></li><li class="tocline"><a class="tocxref" href="#informatieve-referenties"><bdi class="secno">B.2 </bdi>Informatieve referenties</a></li></ol></li></ol></nav>
<section class="notoc">
<div class="header-wrapper"><h2 id="status-van-dit-document"> Status van dit document</h2><a class="self-link" href="#status-van-dit-document" aria-label="Permalink for this Section"></a></div>
<p>Deze versie wordt ter vaststelling naar het Opdrachtgevend Beraad van het DSO gestuurd.</p>
</section>
<section class="normative" id="inleiding"><div class="header-wrapper"><h2 id="H01-Inleiding"><bdi class="secno">1. </bdi>Inleiding</h2><a class="self-link" href="#H01-Inleiding" aria-label="Permalink for Section 1."></a></div><p>Het Informatiemodel Omgevingswet (IMOW) is de toepassing van het CIM-OW op het
niveau van gegevensuitwisseling. Het is daarmee ook gekoppeld aan de Standaard
voor Officiële Publicaties (STOP) die beschrijft hoe officiële publicaties
moeten worden opgesteld en aangeleverd om te kunnen worden bekendgemaakt en
gepubliceerd binnen de Landelijke Voorziening Bekendmaken en Beschikbaarstellen
(LVBB).</p>
<p>Voor het domein van de Omgevingswet en daaraan gekoppeld Digitaal Stelsel
Omgevingswet (DSO) is een nadere specificatie van STOP opgesteld en beschreven
in: ToepassingsProfiel voor OmgevingsDocumenten (TPOD). IMOW is daarin het
informatiemodel dat is toegespitst op de keten ‘Van plan tot publicatie’ van het
DSO. IMOW bepaalt hoe machineleesbare-informatie aan Regelingen wordt toegevoegd
in de vorm van OW-objecten. IMOW is bedoeld voor bouwers van plansoftware en
voor technisch ingestelde medewerkers van bevoegde gezagen en adviesbureaus.</p>
<p>IMOW is als logisch model de uitwerking van het conceptuele model CIM-OW
[<cite><a class="bibref" data-link-type="biblio" href="#bib-cimow" title="Conceptueel Informatiemodel Omgevingswet (CIMOW)">CIMOW</a></cite>]. In <a href="#fig-StelselVanCIMs">Figuur 1</a> zijn de conceptuele informatiemodellen
weergegeven binnen het DSO. Het IMOW is de toepassing van het CIM-OW op het
niveau van gegevens.</p>
<figure id="fig-StelselVanCIMs">
<img src="media/StelselVanCIMs.png" alt="">
<figcaption><a class="self-link" href="#fig-StelselVanCIMs">Figuur <bdi class="figno">1</bdi></a> <span class="fig-title">Overzicht van alle Conceptuele Informatiemodellen in het DSO</span></figcaption>
</figure>
<p>De volgende paragraaf beschrijft de <a href="#H01-context">context</a> van het model en daarna volgt de <a href="#H01-Leeswijzer">leeswijzer</a>.</p>
<section id="context-standaard"><div class="header-wrapper"><h3 id="H01-context"><bdi class="secno">1.1 </bdi>Context standaard</h3><a class="self-link" href="#H01-context" aria-label="Permalink for Section 1.1"></a></div><p>Wanneer het bevoegd gezag een Regeling vaststelt of wijzigt
gebeurt dit via een besluit dat het bevoegd gezag digitaal aan de Landelijke
Voorziening Bekendmaken en Beschikbaar stellen (LVBB) aan moet leveren. Het IMOW
is onderdeel van de standaard die regels voor een aanlevering vastlegt.
Hieronder staat een lijst met documenten en opmerkingen die relevant zijn vanuit
het perspectief van IMOW:</p>
<ul>
<li>Een aanlevering heeft het formaat van een ZIP bestand die je aanbiedt aan de
LVBB. Het LVBB bronhouderkoppelvlak [<cite><a class="bibref" data-link-type="biblio" href="#bib-lvbbbhkv13" title="LVBB Bronhouderkoppelvlak 1.3">LVBBBHKV13</a></cite>] schrijft de structuur van
het ZIP bestand voor.</li>
<li>De Standaard Officiële Publicaties (<a href="https://standaarden.overheid.nl/stop">STOP</a>) legt de documentstructuur
van de tekst van het
besluit en <a href="#dfn-regeling" class="internalDFN" data-link-type="dfn" id="ref-for-dfn-regeling-1">regeling</a> van de aanlevering vast. Ook legt STOP
metadata voor de verwerking van het besluit en beschrijft STOP
hoe geografische informatieobjecten (GIO’s) moeten worden
aangeleverd.</li>
<li>De IMOW.xsd's leggen het XML formaat vast waarmee de OW-objecten moeten worden
uitgewisseld.</li>
<li>Toepassingsprofielen omgevingsdocumenten (TPOD’s). Een TPOD legt voor een type omgevingsdocument vast welke van de mogelijkheden van STOP en IMOW moeten c.q. mogen worden gebruikt en op welke wijze. Er zijn toepassingsprofielen voor onder meer het omgevingsplan, de omgevingsverordening, de omgevingsvisie en het projectbesluit.</li>
<li>De validatiematrix beschrijft regels waaraan aanleveringen dienen te
voldoen. Dit document is zelf geen standaard maar is een opsomming van
regels die in de standaarden beschreven staan. Op veel van de regels in de
validatiematrix gebeurt een automatische controle, zodat een aanlevering die
niet aan de regels voldoet wordt afgekeurd. Echter, automatische controle is
niet altijd mogelijk of geïmplementeerd. In die gevallen is het de verantwoordelijkheid
van het bevoegd gezag om aan de regel te voldoen.</li>
<li>Het Conceptuele Model Omgevingswet [<cite><a class="bibref" data-link-type="biblio" href="#bib-cimow" title="Conceptueel Informatiemodel Omgevingswet (CIMOW)">CIMOW</a></cite>] en het Conceptuele Model Officiële
Publicaties [<cite><a class="bibref" data-link-type="biblio" href="#bib-cimop" title="Conceptueel Informatiemodel Officiële Publicaties binnen de context van de DSO-LV: versie 1.0">CIMOP</a></cite>] leggen de conceptuele basis voor het IMOW.</li>
<li>Waardelijsten geven aan wat de toegestane waardes zijn bij attributen van IMOW
die aan een waardelijst gekoppeld zijn. Waardelijsten worden in de
<a href="https://stelselcatalogus.omgevingswet.overheid.nl/waardelijsten">Stelselcatalogus</a>
gepubliceerd.</li>
<li>Het IMOW maakt gebruik van de [<cite><a class="bibref" data-link-type="biblio" href="#bib-nen3610_2022" title="Basismodel geo-informatie">NEN3610_2022</a></cite>] standaard.</li>
<li>Voorbeeldbestanden van correcte aanleveringen geven inzicht hoe IMOP en
IMOW technisch toegepast kunnen worden om een nieuw omgevingsdocument aan te
leveren.</li>
</ul>
<figure id="fig-schematisch-overzicht-van-aanlevering-conform-de-standaard-relatie-tussen-imop-en-imow-bestanden">
<img src="media/OverzichtAanlevering.png">
<figcaption><a class="self-link" href="#fig-schematisch-overzicht-van-aanlevering-conform-de-standaard-relatie-tussen-imop-en-imow-bestanden">Figuur <bdi class="figno">2</bdi></a> <span class="fig-title">Schematisch overzicht van aanlevering conform de standaard. Relatie tussen IMOP en IMOW-bestanden.</span></figcaption>
</figure>
</section><section id="toepassingsgebied"><div class="header-wrapper"><h3 id="x1-2-toepassingsgebied"><bdi class="secno">1.2 </bdi>Toepassingsgebied</h3><a class="self-link" href="#toepassingsgebied" aria-label="Permalink for Section 1.2"></a></div>
<p>Het toepassingsgebied van IMOW is het machineleesbaar maken van teksten en
locaties van regelingen binnen de Omgevingswet.</p>
<p>Het IMOW schrijft voor hoe je de tekst van een Regeling (zoals beschreven in STOP)
machineleesbaar kunt maken door de tekst te verrijken met
annotaties in de vorm van een collectie OW-objecten en hoe je die kunt toevoegen
aan een aanlevering. Onder annoteren verstaan we het toevoegen van gegevens aan
(onderdelen van) een omgevingsdocument die de inhoud van het omgevingsdocument
voor de computer vertalen. Door het annoteren kan een viewer locaties en andere
gegevens op een kaart en bij een tekst weergeven. Het annoteren zorgt er ook
voor dat een omgevingsdocument op bepaalde kenmerken doorzoekbaar is. In het
geval van omgevingsdocumenten met artikelstructuur waarin regels over
activiteiten worden gesteld, helpt het annoteren ook bij het verbinden van
toepasbare regels, oftewel vragenbomen, aan regels met locaties. Activiteiten
spelen een belangrijke rol in het DSO en deze worden verrijkt met duiding op de
kaart de naam van de activiteit en de activiteitregelkwalificatie. Ook gebieden
worden geduid. De gegevens die aangeleverd worden vanuit
het IMOW helpen de buitenwereld met het op een kaart terugvinden van
Omgevingswet-informatie.</p>
<p>Deze OW-objecten worden
tegelijk met een Besluit aan de LVBB aangeleverd. De koppeling
gebeurt door OW-objecten te laten verwijzen naar onderdelen van de STOP tekst via
de identificatie van die onderdelen, het wId.
OW-objecten zelf kunnen weer gekoppeld zijn aan andere OW-objecten waardoor er
naast de tekst ook een gestructureerde collectie objecten bij een regeling
ontstaat. Deze structuur kan bijvoorbeeld gebruikt worden om de inhoud van de
regeling via een kaart te ontsluiten.</p>
<p>STOP beschrijft twee soorten tekststructuren voor
omgevingsdocumenten: de artikelstructuur en de vrijetekststructuur.
De artikelstructuur moet worden gebruikt voor regelingen die zijn opgebouwd uit
één of meer artikelen die regels bevatten. De vrijetekststructuur wordt gebruikt
voor regelingen met een vrijere opzet waarin geen artikelen en regels voorkomen.
Per tekststructuur is een set OW-objecten beschikbaar. Voor beide typen
tekststructuren is een diagram toegevoegd met hierin de toegelaten objecttypen,
attributen en relaties.</p>
</section><section id="begrippen"><div class="header-wrapper"><h3 id="x1-3-begrippen"><bdi class="secno">1.3 </bdi>Begrippen</h3><a class="self-link" href="#begrippen" aria-label="Permalink for Section 1.3"></a></div>
<p>De volgende begrippen worden gebruikt in dit document:</p>
<p><dfn id="dfn-besluit" tabindex="0" aria-haspopup="dialog">Besluit</dfn>: Een tekst die de vaststelling of wijziging van (de
geldigheid van) een regeling of informatieobject beschrijft. Met andere
woorden: Een besluit beschrijft precies hoe een BG een nieuwe regeling
vaststelt, wijzigingen op een regeling doorvoert of de inwerkingtreding
van een regeling of regelingversie bepaalt. (bron: <a href="https://koop.gitlab.io/STOP/standaard/2.0.0-rc/begrippenlijst_besluit.html">STOP 2.0</a>)</p>
<p><dfn id="dfn-bhkv" tabindex="0" aria-haspopup="dialog">BHKV</dfn>: Zie <a href="#dfn-bronhouderkoppelvlak" class="internalDFN" data-link-type="dfn" id="ref-for-dfn-bronhouderkoppelvlak-1">Bronhouderkoppelvlak</a>.</p>
<p><dfn id="dfn-bronhouderkoppelvlak" tabindex="0" aria-haspopup="dialog">Bronhouderkoppelvlak</dfn>: Het bronhouderkoppelvlak (BHKV) is een
technische voorziening tussen de LVBB (Landelijke Voorziening Bekendmaken en
Beschikbaar stellen) en (software van) een bevoegd gezag. In dat koppelvlak
worden technische en inhoudelijke standaarden toegepast, waardoor inhoudelijke,
proces- of foutinformatie tussen de systemen kan worden uitgewisseld. (bron:
<a href="https://koop.gitlab.io/STOP/standaard/2.0.0-rc/begrippenlijst_bronhouderkoppelvlak.html">STOP 2.0</a>)</p>
<p><dfn id="dfn-regeling" tabindex="0" aria-haspopup="dialog">Regeling</dfn>: De regeling van een omgevingsdocument bevat de volledige set regels of beleidsteksten die gelden in de fysieke leefomgeving, dan wel de beschrijving van wat er wordt gerealiseerd in de fysieke leefomgeving.</p>
</section><section id="uitgangspunten-van-modellering"><div class="header-wrapper"><h3 id="x1-4-uitgangspunten-van-modellering"><bdi class="secno">1.4 </bdi>Uitgangspunten van modellering</h3><a class="self-link" href="#uitgangspunten-van-modellering" aria-label="Permalink for Section 1.4"></a></div>
<p>De volgende uitgangspunten zijn gehanteerd bij het opstellen van het IMOW:</p>
<ul>
<li>Conformiteit met Metamodel voor informatiemodellering, MIM 1.2 [<cite><a class="bibref" data-link-type="biblio" href="#bib-mim12" title="MIM - Metamodel Informatie Modellering (Versie 1.2)">MIM12</a></cite>].</li>
<li>Het IMOW is opgesteld als een UML klassediagrammen. Voor algemene uitleg
over UML klassediagram zie wikipedia: UML klassediagram.</li>
<li>Het model is een implementatie van het CIM-OW waarbij bij implementatie
niet altijd gekozen is voor de structurering zoals beschreven in het CIM-OW [<cite><a class="bibref" data-link-type="biblio" href="#bib-cimow" title="Conceptueel Informatiemodel Omgevingswet (CIMOW)">CIMOW</a></cite>].</li>
</ul>
</section><section id="gegevensdefinitie-en-uml-diagrammen"><div class="header-wrapper"><h3 id="x1-5-gegevensdefinitie-en-uml-diagrammen"><bdi class="secno">1.5 </bdi>Gegevensdefinitie en UML-Diagrammen</h3><a class="self-link" href="#gegevensdefinitie-en-uml-diagrammen" aria-label="Permalink for Section 1.5"></a></div>
<p>In <a href="#cat">hoofdstuk 2</a> van het IMOW staan de gegevensdefinities. Dit hoofdstuk bevat
UML diagrammen waarin de objecttypen beschreven zijn. In de diagrammen zijn de
objecttypen aan te klikken en wordt er gelinkt naar de definitie en attributen van dat objecttype in
de objectcatalogus. De in de catalogus benoemde metagegevens zoals bijvoorbeeld
Naam, Definitie, Indicatie abstract object zijn termen uit het Metamodel
Informatiemodellering [<cite><a class="bibref" data-link-type="biblio" href="#bib-mim12" title="MIM - Metamodel Informatie Modellering (Versie 1.2)">MIM12</a></cite>]. Door te klikken op de attribuutnaam kom je bij de
definitie van dat attribuut met enkele metagegevens van dat attribuut volgens MIM.</p>
<p><strong>Noot:</strong> De kenmerken 'Indicatie materiële historie' en 'Mogelijk geen waarde' die in
de catalogus vermeld staan zijn defaultwaarden uit het MIM. Ze worden automatisch
toegevoegd aan de catalogus, ze hebben echter geen betekenis in het IMOW.</p>
<p>In <a href="#cat">hoofdstuk 2</a> zijn de UML diagrammen van het IMOW opgenomen. Er is
een onderverdeling naar verschillende domeinen gemaakt:</p>
<ul>
<li>Aanlevering</li>
<li>OW-object</li>
<li>Artikelstructuur</li>
<li>Vrijetekststructuur</li>
<li>Locatie</li>
<li>Kaart</li>
</ul>
</section><section id="leeswijzer"><div class="header-wrapper"><h3 id="H01-Leeswijzer"><bdi class="secno">1.6 </bdi>Leeswijzer</h3><a class="self-link" href="#H01-Leeswijzer" aria-label="Permalink for Section 1.6"></a></div><p>Dit document is als volgt opgebouwd: <a href="#cat">hoofdstuk 2</a> bevat de gegevensdefinities
van OW-objecten. <a href="#lis">Hoofdstuk 3</a> bevat een overzicht van de gebruikte waardelijsten.
<a href="#H04-Implementatie">Hoofdstuk 4</a> bescrijft hoe het IMOW technisch geïmplementeerd moet worden en gaat gedetailleerd in op hoe de
OW-bestanden er uit dienen te zien en geeft een XML-beschrijving van de aan te leveren bestanden. <a href="#H05-GebruikIMOW">Hoofdstuk 5</a>
schrijft voor hoe een OW-aanlevering bij het bronhouderkoppelvlak van de LVBB moet worden
aangeleverd. <a href="#H06-OPinIMOW">Hoofdstuk 6</a>
beschrijft enkele aspecten uit STOP die relevant zijn voor het IMOW.</p>
</section></section>
<section id="cat" class="normative">
<div class="header-wrapper"><h2 id="x2-gegevensdefinitie"><bdi class="secno">2. </bdi>Gegevensdefinitie</h2><a class="self-link" href="#cat" aria-label="Permalink for Section 2."></a></div>
<section id="global_package_Aanlevering">
<div class="header-wrapper"><h3 id="x2-1-domein-aanlevering"><bdi class="secno">2.1 </bdi>Domein Aanlevering</h3><a class="self-link" href="#global_package_Aanlevering" aria-label="Permalink for Section 2.1"></a></div>
<section id="EAID_D6C15DB1_4E38_4908_B130_11EA3C77AC79">
<div class="header-wrapper"><h4 id="x2-1-1-aanlevering-overzicht"><bdi class="secno">2.1.1 </bdi> Aanlevering - overzicht</h4><a class="self-link" href="#EAID_D6C15DB1_4E38_4908_B130_11EA3C77AC79" aria-label="Permalink for Section 2.1.1"></a></div>
<div class="imageinfo overview">
<figure id="fig-aanlevering"><img src="data/Images/EAID_D6C15DB1_4E38_4908_B130_11EA3C77AC79.png" usemap="#imagemap-EAID_D6C15DB1_4E38_4908_B130_11EA3C77AC79" alt="Diagram: Als bij het bronhouderkoppelvlak van de LVBB een Aanlevering wordt gedaan met daarin een OW-manifest moet de inhoud hiervan voldoen aan het IMOW. Het OW-manifest is een bestand met de naam 'manifest-ow.xml'. In een OW-manifest zitten één of meer OW-aanleveringen. Ieder van die OW-aanleveringen is via het attribuut expressionIDRegeling gekoppeld aan de wijziging van een Regeling in het STOP deel van de LVBB-Aanlevering. De te wijzigen OW-objecten zijn te verdelen over een aantal OW-bestanden."><figcaption><a class="self-link" href="#fig-aanlevering">Figuur <bdi class="figno">3</bdi></a> <span class="fig-title">Aanlevering</span></figcaption>
</figure><map name="imagemap-EAID_D6C15DB1_4E38_4908_B130_11EA3C77AC79"><area shape="rect" alt="OW-object" coords="421,248,640,372" href="#global_class_OWobject_OWobject"><area shape="rect" alt="OW-Bestand" coords="18,231,267,389" href="#global_class_Aanlevering_OWBestand"><area shape="rect" alt="OW-manifest" coords="14,22,253,148" href="#global_class_Aanlevering_OWmanifest"><area shape="rect" alt="OW-bestandverwijzing" coords="777,25,1021,146" href="#global_class_Aanlevering_OWbestandverwijzing"><area shape="rect" alt="OW-aanlevering" coords="369,14,666,157" href="#global_class_Aanlevering_OWaanlevering"></map><p>
</p><p>Als bij het bronhouderkoppelvlak van de LVBB een Aanlevering wordt gedaan met daarin
een OW-manifest moet de inhoud hiervan voldoen aan het IMOW. Het OW-manifest is een
bestand met de naam 'manifest-ow.xml'.</p>
<p>In een OW-manifest zitten één of meer OW-aanleveringen. Ieder van die OW-aanleveringen
is via het attribuut expressionIDRegeling gekoppeld aan de wijziging van een Regeling
in het STOP deel van de LVBB-Aanlevering.</p>
<p>De te wijzigen OW-objecten zijn te verdelen over een aantal OW-bestanden.</p>
<p></p>
</div>
</section>
<section id="objecttypen">
<div class="header-wrapper"><h4 id="x2-1-2-objecttypen"><bdi class="secno">2.1.2 </bdi>Objecttypen </h4><a class="self-link" href="#objecttypen" aria-label="Permalink for Section 2.1.2"></a></div>
<section id="global_class_Aanlevering_OWbestandverwijzing">
<div class="header-wrapper"><h5 id="x2-1-2-1-ow-bestandverwijzing"><bdi class="secno">2.1.2.1 </bdi> OW-bestandverwijzing</h5><a class="self-link" href="#global_class_Aanlevering_OWbestandverwijzing" aria-label="Permalink for Section 2.1.2.1"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>OW-bestandverwijzing</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Verwijzing naar een OW-bestand in deze OW-Aanlevering.</p>
</td>
</tr>
<tr>
<th>Regels</th>
<td>
<ul>
<li>Als een bestand genoemd wordt dan moet het aanwezig zijn in de aanlevering. (LVBB1016)</li>
</ul>
<ul>
<li>Bij objectType zijn de volgende waardes toegestaan: Activiteit, Gebiedsaanwijzing,
Gebied, Gebiedengroep, Hoofdlijn, Punt, Puntengroep, Lijn, Lijnengroep, Regeltekst,
RegelVoorIedereen, Instructieregel, Omgevingswaarderegel, Omgevingsnorm, Omgevingswaarde,
Pons, Tekstdeel, Kaart, Kaartlaag, Ambtsgebied, Divisie of Divisietekst. (LVBB1025)</li>
</ul>
</td>
</tr>
<tr>
<th>Unieke aanduiding</th>
<td>naam</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h6 id="overzicht-attributen">Overzicht attributen </h6><a class="self-link" href="#global_class_Aanlevering_OWbestandverwijzing" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<tbody>
<tr>
<th>Attribuutnaam</th>
<th>Definitie</th>
<th>Formaat</th>
<th>Card</th>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWbestandverwijzing_naam">naam</a>
</td>
<td>
<p>De naam van het bestand.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWbestandverwijzing_objectType">objectType</a>
</td>
<td>
<p>Lijst van specifieke objectTypen die voorkomt in de OW-aanlevering.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>1 .. *</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h6 id="overzicht-relaties">Overzicht relaties </h6><a class="self-link" href="#global_class_Aanlevering_OWbestandverwijzing" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<tbody>
<tr>
<th>Rol naam met kardinaliteiten</th>
<th>Definitie</th>
</tr>
<tr>
<td>
OW-bestandverwijzing
[ 0 .. * ]
<a class="link" href="#detail_association_Aanlevering_OWbestandverwijzing_bestand">bestand</a>
<a class="link" href="#global_class_Aanlevering_OWaanlevering">OW-aanlevering</a>
[ 1 ]
</td>
<td></td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_Aanlevering_OWBestand">
<div class="header-wrapper"><h5 id="x2-1-2-2-ow-bestand"><bdi class="secno">2.1.2.2 </bdi> OW-Bestand</h5><a class="self-link" href="#global_class_Aanlevering_OWBestand" aria-label="Permalink for Section 2.1.2.2"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>OW-Bestand</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Specifiek bestand in Aanlevering.</p>
</td>
</tr>
<tr>
<th>Regels</th>
<td>
<ul>
<li>Een OW-Bestand moet voldoen aan het xmlschema: bestanden-ow/generiek/standlevering-generiek.xsd
(TPOD1250)</li>
</ul>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Dit XML bestand bevat een lijst met OW-objecten.</p>
</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h6 id="overzicht-attributen-0">Overzicht attributen </h6><a class="self-link" href="#global_class_Aanlevering_OWBestand" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<tbody>
<tr>
<th>Attribuutnaam</th>
<th>Definitie</th>
<th>Formaat</th>
<th>Card</th>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWBestand_dataset">dataset</a>
</td>
<td>
<p>Omschrijving van de dataset.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWBestand_gebied">gebied</a>
</td>
<td>
<p>Naam van het gebied.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWBestand_leveringsID">leveringsID</a>
</td>
<td>
<p>Een identificatie van de levering.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWBestand_objectTypen">objectTypen</a>
</td>
<td>
<p>Lijst van specifieke objectTypen die voorkomen in het OW-bestand.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>1 .. *</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_Aanlevering_OWmanifest">
<div class="header-wrapper"><h5 id="x2-1-2-3-ow-manifest"><bdi class="secno">2.1.2.3 </bdi> OW-manifest</h5><a class="self-link" href="#global_class_Aanlevering_OWmanifest" aria-label="Permalink for Section 2.1.2.3"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>OW-manifest</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Bij een aanlevering aan de LVBB meegeleverd bestand dat de OW-aanleveringen behorend
bij de aanlevering vastlegt.</p>
</td>
</tr>
<tr>
<th>Regels</th>
<td>
<ul>
<li>Als een LVBB-aanlevering een regeling initieert, wijzigt, of intrekt moet voor elke
regelingversie die daardoor ontstaat of eindigt een OW-aanlevering gekoppeld zijn.
(TPOD1225)</li>
</ul>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Als een Besluit meerdere regelingen instelt of wijzigt vermeldt het OW-manifest meerdere
OW-aanleveringen. Ook kan het bij gefaseerde inwerkingtreding voorkomen dat één besluit
resulteert in meerdere regelingversies van dezelfde regeling.</p>
</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h6 id="overzicht-attributen-1">Overzicht attributen </h6><a class="self-link" href="#global_class_Aanlevering_OWmanifest" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<tbody>
<tr>
<th>Attribuutnaam</th>
<th>Definitie</th>
<th>Formaat</th>
<th>Card</th>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWmanifest_domein">domein</a>
</td>
<td>
<p>Het domein geeft het wetgevingsdomein aan. Het element heeft een vaste waarde 'Omgevingswet'.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_Aanlevering_OWmanifest_IMOWversie">IMOWversie</a>
</td>
<td>
<p>Versienummer van het IMOW gebruikt in deze aanlevering.</p>
</td>
<td>
CHARACTERSTRING
</td>
<td>0 .. 1</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_Aanlevering_OWaanlevering">
<div class="header-wrapper"><h5 id="x2-1-2-4-ow-aanlevering"><bdi class="secno">2.1.2.4 </bdi> OW-aanlevering</h5><a class="self-link" href="#global_class_Aanlevering_OWaanlevering" aria-label="Permalink for Section 2.1.2.4"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>OW-aanlevering</td>
</tr>
<tr>
<th>Definitie</th>