-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapshot.html
4901 lines (3807 loc) · 458 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>Conceptueel Informatiemodel Omgevingswet</title>
<title>Default</title>
<link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico">
<style>
div.imageinfo.overview img {max-width: none;}
</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>
<style>
ul.index{columns:30ch;column-gap:1.5em}
ul.index li{list-style:inherit}
ul.index li span{color:inherit;cursor:pointer;white-space:normal}
#index-defined-here ul.index li{font-size:.9rem}
ul.index code{color:inherit}
#index-defined-here .print-only{display:none}
@media print{
#index-defined-here .print-only{display:initial}
}
</style>
<meta name="description" content="Dit document beschrijft het 'Conceptueel Informatiemodel Omgevingswet'. Dit is een conceptueel model van het
DSO.">
<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/",
"postProcess": [
null
],
"doJsonLd": true,
"specStatusText": {
"en": {
"geen": "None",
"basis": "Document",
"ld": "Living document",
"cv": "Candidate recommendation",
"def": "Recommendation",
"vv": "Proposed recommendation",
"wv": "Editor’s draft"
},
"nl": {
"geen": "Geen",
"basis": "Document",
"ld": "Levend document",
"cv": "Consultatieversie",
"def": "Vastgestelde versie",
"vv": "Versie ter vaststelling",
"wv": "Werkversie"
}
},
"labelColor": {
"geen": "#000000",
"basis": "#80CC28",
"ld": "#80CC28",
"cv": "#045D9F",
"def": "#045D9F",
"vv": "#045D9F",
"wv": "#FF0000"
},
"specTypeText": {
"en": {
"geen": "None",
"no": "Norm",
"st": "Standard",
"im": "Information model",
"pr": "Guideline",
"hr": "Guide",
"wa": "Working arrangement",
"al": "General",
"bd": "Governance documentation",
"bp": "Best practice"
},
"nl": {
"geen": "Geen",
"no": "Norm",
"st": "Standaard",
"im": "Informatiemodel",
"pr": "Praktijkrichtlijn",
"hr": "Handreiking",
"wa": "Werkafspraak",
"al": "Algemeen",
"bd": "Beheerdocumentatie",
"bp": "Best practice"
}
},
"licenses": {
"geen": {
"name": "Geen"
},
"cc0": {
"name": "Creative Commons 0 Public Domain Dedication",
"short": "CC0",
"url": "https://creativecommons.org/publicdomain/zero/1.0/",
"image": "https://tools.geostandaarden.nl/publication/organisation/geonovum/cc-zero.svg"
},
"cc-by": {
"name": "Creative Commons Attribution 4.0 International Public License",
"short": "CC-BY",
"url": "https://creativecommons.org/licenses/by/4.0/legalcode",
"image": "https://tools.geostandaarden.nl/publication/organisation/geonovum/cc-by.svg"
},
"cc-by-nd": {
"name": "Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal",
"short": "CC-BY-ND",
"url": "https://creativecommons.org/licenses/by-nd/4.0/legalcode.nl",
"image": "https://tools.geostandaarden.nl/publication/organisation/geonovum/cc-by-nd.svg"
}
},
"nl_organisationStylesURL": "https://tools.geostandaarden.nl/respec/style/",
"latestVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"shortName"
],
"thisVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"shortName",
"/",
"publishDate"
],
"prevVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"shortName",
"/",
"previousPublishDate"
],
"logos": [
{
"src": "https://tools.geostandaarden.nl/publication/domain/dso/dso.svg",
"alt": "Digitaal Stelsel Omgevingswet",
"id": "dso",
"height": "44",
"width": "240",
"url": "https://www.aandeslagmetdeomgevingswet.nl",
"ico": "https://tools.geostandaarden.nl/publication/domain/dso/Geonovum.ico"
}
],
"useLogo": true,
"useLabel": true,
"addSectionLinks": false,
"sotdText": {
"en": {
"sotd": "Status of This Document",
"geen": "None",
"basis": "This document has no official standing.",
"ld": "This is a living document, which is updated regularly.",
"cv": "This is a proposed recommendation approved by TO. Comments regarding this document may be sent to [address].",
"def": "This is the definitive version of this document. Edits resulting from consultations have been applied.",
"vv": "This is the definitive concept of this document. Edits resulting from consultations have been applied.",
"wv": "This is a draft that could be altered, removed or replaced by other documents. It is not a recommendation approved by TO."
},
"nl": {
"sotd": "Status van dit document",
"geen": "Geen",
"basis": "Dit is een document zonder officiële status.",
"ld": "Dit is een levend document dat regelmatig gewijzigd wordt.",
"cv": "Dit is een door het TO goedgekeurde consultatieversie. Commentaar over dit document kan gestuurd worden naar [adres].",
"def": "Dit is de definitieve versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"vv": "Dit is een definitief concept van de nieuwe versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"wv": "Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen door het TO goedgekeurde consultatieversie."
}
},
"title": "Conceptueel Informatiemodel Omgevingswet",
"specStatus": "wv",
"specType": "IM",
"pubDomain": "dso",
"license": "cc-by",
"shortName": "dso-cim-ow",
"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/dso-cim-ow",
"alternateFormats": [
{
"label": "pdf",
"uri": "dso-cim-ow.pdf"
}
],
"localBiblio": {
"Basisgeometrie": {
"id": "Basisgeometrie",
"title": "Basisgeometrie",
"href": "https://docs.geostandaarden.nl/nen3610/def-st-basisgeometrie-20200930/",
"status": "Definitief",
"publisher": "Geonovum",
"date": "30 september 2020"
},
"MIM": {
"id": "MIM",
"title": "MIM - Metamodel Informatie Modellering",
"href": "https://docs.geostandaarden.nl/mim/def-st-mim-20220217/",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2022-02-17"
},
"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"
},
"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"
},
"STOP20": {
"id": "STOP20",
"title": "Standaard Officiële Publicaties",
"href": "https://koop.gitlab.io/STOP/standaard/2.0.0-rc/index.html",
"status": "Release Candidate",
"publisher": "KOOP",
"date": "2023-02-17"
}
}
}</script>
<link rel="stylesheet" href="https://tools.geostandaarden.nl/respec/style/base.css"></head>
<body class="h-entry"><div class="head">
<a class="logo" href="https://www.aandeslagmetdeomgevingswet.nl"><img alt="Digitaal Stelsel Omgevingswet" height="44" id="dso" src="https://tools.geostandaarden.nl/publication/domain/dso/dso.svg" width="240">
</a> <h1 id="title" class="title">Conceptueel Informatiemodel Omgevingswet</h1>
<h2>
Geonovum Informatiemodel<br>
Werkversie
<time class="dt-published" datetime="2025-01-08">08 januari 2025</time>
</h2>
<dl>
<dt>Laatste werkversie:</dt><dd><a href="https://geonovum.github.io/dso-cim-ow/">https://geonovum.github.io/dso-cim-ow/</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/dso-cim-ow/">GitHub Geonovum/dso-cim-ow</a>
</dd><dd>
<a href="https://github.com/Geonovum/dso-cim-ow/issues/">Dien een melding in</a>
</dd><dd>
<a href="https://github.com/Geonovum/dso-cim-ow/commits/">Revisiehistorie</a>
</dd><dd>
<a href="https://github.com/Geonovum/dso-cim-ow/pulls/">Pull requests</a>
</dd>
</dl>
<p>
Dit document is ook beschikbaar in dit niet-normatieve formaat:
<a rel="alternate" href="dso-cim-ow.pdf">pdf</a>
</p>
<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/publication/organisation/geonovum/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 'Conceptueel Informatiemodel Omgevingswet'. Dit is een conceptueel model van het
DSO.</p>
</section>
<section id="sotd" class="introductory"><h2>Status van dit document</h2><p>Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen door het TO goedgekeurde consultatieversie.</p></section><nav id="toc"><h2 class="introductory" id="inhoudsopgave">Inhoudsopgave</h2><ol class="toc"><li class="tocline"><a class="tocxref" href="#abstract">Samenvatting</a></li><li class="tocline"><a class="tocxref" href="#sotd">Status van dit document</a></li><li class="tocline"><a class="tocxref" href="#voorwoord"><bdi class="secno">1. </bdi>Voorwoord</a></li><li class="tocline"><a class="tocxref" href="#inleiding"><bdi class="secno">2. </bdi>Inleiding</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#conceptueel-informatiemodel-omgevingswet"><bdi class="secno">2.1 </bdi>Conceptueel Informatiemodel Omgevingswet.</a></li><li class="tocline"><a class="tocxref" href="#nieuw-stelsel-omgevingsrecht"><bdi class="secno">2.2 </bdi>Nieuw stelsel omgevingsrecht</a></li><li class="tocline"><a class="tocxref" href="#toelichting-bij-informatiekundig-perspectief"><bdi class="secno">2.3 </bdi>Toelichting bij informatiekundig perspectief</a></li></ol></li><li class="tocline"><a class="tocxref" href="#toepassingsgebied"><bdi class="secno">3. </bdi>Toepassingsgebied</a></li><li class="tocline"><a class="tocxref" href="#overzicht"><bdi class="secno">4. </bdi>Overzicht</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#naam-en-acroniem"><bdi class="secno">4.1 </bdi>Naam en Acroniem</a></li><li class="tocline"><a class="tocxref" href="#termen-en-definities"><bdi class="secno">4.2 </bdi>Termen en definities</a></li><li class="tocline"><a class="tocxref" href="#symbolen-en-afkortingen"><bdi class="secno">4.3 </bdi>Symbolen en afkortingen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#cat"><bdi class="secno">5. </bdi>Gegevensdefinitie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_packages"><bdi class="secno">5.1 </bdi>Model dso-cim-ow</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_E3A46D6F_3ED0_4808_82AD_D7173DDFDAC4"><bdi class="secno">5.1.1 </bdi> OW-OP - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_199FD13D_8495_487c_8D35_8C11BB634BAE"><bdi class="secno">5.1.2 </bdi> OW-Objecten - overzicht</a></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Artikelstructuur"><bdi class="secno">5.2 </bdi>Domein Artikelstructuur</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_39BFBADA_1173_4408_A26C_16716D45ACFC"><bdi class="secno">5.2.1 </bdi> OW - RegeltekstAnnotaties - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen"><bdi class="secno">5.2.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Instructieregel"><bdi class="secno">5.2.2.1 </bdi> Instructieregel</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingswaarderegel"><bdi class="secno">5.2.2.2 </bdi> Omgevingswaarderegel</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Pons"><bdi class="secno">5.2.2.3 </bdi> Pons</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Regelvooriedereen"><bdi class="secno">5.2.2.4 </bdi> Regel voor iedereen</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_RegeltekstAnnotatie"><bdi class="secno">5.2.2.5 </bdi> RegeltekstAnnotatie</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Norm"><bdi class="secno">5.2.2.6 </bdi> Norm</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Juridischeregel"><bdi class="secno">5.2.2.7 </bdi> Juridische regel</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingsnorm"><bdi class="secno">5.2.2.8 </bdi> Omgevingsnorm</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingswaarde"><bdi class="secno">5.2.2.9 </bdi> Omgevingswaarde</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Activiteit"><bdi class="secno">5.2.2.10 </bdi> Activiteit</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Instrument"><bdi class="secno">5.2.2.11 </bdi> Instrument</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Taakuitoefening"><bdi class="secno">5.2.2.12 </bdi> Taakuitoefening</a></li></ol></li><li class="tocline"><a class="tocxref" href="#referentielijsten"><bdi class="secno">5.2.3 </bdi>Referentielijsten </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Activiteitengroep"><bdi class="secno">5.2.3.1 </bdi>Referentielijst Activiteitengroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Eenheid"><bdi class="secno">5.2.3.2 </bdi>Referentielijst Eenheid</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Typenorm"><bdi class="secno">5.2.3.3 </bdi>Referentielijst Typenorm</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingsnormgroep"><bdi class="secno">5.2.3.4 </bdi>Referentielijst Omgevingsnormgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Thema"><bdi class="secno">5.2.3.5 </bdi>Referentielijst Thema</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Omgevingswaardegroep"><bdi class="secno">5.2.3.6 </bdi>Referentielijst Omgevingswaardegroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Adressaat"><bdi class="secno">5.2.3.7 </bdi>Referentielijst Adressaat</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_InstrumentType"><bdi class="secno">5.2.3.8 </bdi>Referentielijst InstrumentType</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Activiteitregelkwalificatie"><bdi class="secno">5.2.3.9 </bdi>Referentielijst Activiteitregelkwalificatie</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Idealisatie"><bdi class="secno">5.2.3.10 </bdi>Referentielijst Idealisatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptypen"><bdi class="secno">5.2.4 </bdi>Gegevensgroeptypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_ActiviteitLocatieaanduiding"><bdi class="secno">5.2.4.1 </bdi>Gegevensgroep ActiviteitLocatieaanduiding</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_Normwaarde"><bdi class="secno">5.2.4.2 </bdi>Gegevensgroep Normwaarde</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_KwalitatieveWaarde"><bdi class="secno">5.2.4.3 </bdi>Gegevensgroep KwalitatieveWaarde</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_KwantitatieveWaarde"><bdi class="secno">5.2.4.4 </bdi>Gegevensgroep KwantitatieveWaarde</a></li><li class="tocline"><a class="tocxref" href="#global_class_Artikelstructuur_WaardeInRegeltekst"><bdi class="secno">5.2.4.5 </bdi>Gegevensgroep WaardeInRegeltekst</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details"><bdi class="secno">5.2.5 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details"><bdi class="secno">5.2.5.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Instructieregel"><bdi class="secno">5.2.5.1.1 </bdi> Instructieregel</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingswaarderegel"><bdi class="secno">5.2.5.1.2 </bdi> Omgevingswaarderegel</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Pons"><bdi class="secno">5.2.5.1.3 </bdi> Pons</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Regelvooriedereen"><bdi class="secno">5.2.5.1.4 </bdi> Regel voor iedereen</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_RegeltekstAnnotatie"><bdi class="secno">5.2.5.1.5 </bdi> RegeltekstAnnotatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Norm"><bdi class="secno">5.2.5.1.6 </bdi> Norm</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Juridischeregel"><bdi class="secno">5.2.5.1.7 </bdi> Juridische regel</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingsnorm"><bdi class="secno">5.2.5.1.8 </bdi> Omgevingsnorm</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingswaarde"><bdi class="secno">5.2.5.1.9 </bdi> Omgevingswaarde</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Activiteit"><bdi class="secno">5.2.5.1.10 </bdi> Activiteit</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Instrument"><bdi class="secno">5.2.5.1.11 </bdi> Instrument</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Taakuitoefening"><bdi class="secno">5.2.5.1.12 </bdi> Taakuitoefening</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-details"><bdi class="secno">5.2.5.2 </bdi>Gegevensgroeptype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_ActiviteitLocatieaanduiding"><bdi class="secno">5.2.5.2.1 </bdi>Gegevensgroeptype ActiviteitLocatieaanduiding</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Normwaarde"><bdi class="secno">5.2.5.2.2 </bdi>Gegevensgroeptype Normwaarde</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_KwalitatieveWaarde"><bdi class="secno">5.2.5.2.3 </bdi>Gegevensgroeptype KwalitatieveWaarde</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_KwantitatieveWaarde"><bdi class="secno">5.2.5.2.4 </bdi>Gegevensgroeptype KwantitatieveWaarde</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Locatie"><bdi class="secno">5.3 </bdi>Domein Locatie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_73DE0CD2_3281_45f6_8BA4_3A0869631893"><bdi class="secno">5.3.1 </bdi> Locaties - detail</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-0"><bdi class="secno">5.3.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Gebied"><bdi class="secno">5.3.2.1 </bdi> Gebied</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Locatie"><bdi class="secno">5.3.2.2 </bdi> Locatie</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Gebiedengroep"><bdi class="secno">5.3.2.3 </bdi> Gebiedengroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Lijn"><bdi class="secno">5.3.2.4 </bdi> Lijn</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Lijnengroep"><bdi class="secno">5.3.2.5 </bdi> Lijnengroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Ambtsgebied"><bdi class="secno">5.3.2.6 </bdi> Ambtsgebied</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Punt"><bdi class="secno">5.3.2.7 </bdi> Punt</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_Puntengroep"><bdi class="secno">5.3.2.8 </bdi> Puntengroep</a></li></ol></li><li class="tocline"><a class="tocxref" href="#keuzen"><bdi class="secno">5.3.3 </bdi>Keuzen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Locatie_PuntOfMultipunt"><bdi class="secno">5.3.3.1 </bdi> PuntOfMultipunt</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_VlakOfMultivlak"><bdi class="secno">5.3.3.2 </bdi> VlakOfMultivlak</a></li><li class="tocline"><a class="tocxref" href="#global_class_Locatie_LijnOfMultilijn"><bdi class="secno">5.3.3.3 </bdi> LijnOfMultilijn</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptypen-0"><bdi class="secno">5.3.4 </bdi>Gegevensgroeptypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Locatie_BestuurlijkeGrenzenVerwijzing"><bdi class="secno">5.3.4.1 </bdi>Gegevensgroep BestuurlijkeGrenzenVerwijzing</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-0"><bdi class="secno">5.3.5 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-0"><bdi class="secno">5.3.5.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Gebied"><bdi class="secno">5.3.5.1.1 </bdi> Gebied</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Locatie"><bdi class="secno">5.3.5.1.2 </bdi> Locatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Gebiedengroep"><bdi class="secno">5.3.5.1.3 </bdi> Gebiedengroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Lijn"><bdi class="secno">5.3.5.1.4 </bdi> Lijn</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Lijnengroep"><bdi class="secno">5.3.5.1.5 </bdi> Lijnengroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Ambtsgebied"><bdi class="secno">5.3.5.1.6 </bdi> Ambtsgebied</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Punt"><bdi class="secno">5.3.5.1.7 </bdi> Punt</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_Puntengroep"><bdi class="secno">5.3.5.1.8 </bdi> Puntengroep</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-details-0"><bdi class="secno">5.3.5.2 </bdi>Gegevensgroeptype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_BestuurlijkeGrenzenVerwijzing"><bdi class="secno">5.3.5.2.1 </bdi>Gegevensgroeptype BestuurlijkeGrenzenVerwijzing</a></li></ol></li><li class="tocline"><a class="tocxref" href="#keuze"><bdi class="secno">5.3.5.3 </bdi>Keuze </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_PuntOfMultipunt"><bdi class="secno">5.3.5.3.1 </bdi>Keuze PuntOfMultipunt</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_VlakOfMultivlak"><bdi class="secno">5.3.5.3.2 </bdi>Keuze VlakOfMultivlak</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Locatie_LijnOfMultilijn"><bdi class="secno">5.3.5.3.3 </bdi>Keuze LijnOfMultilijn</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Vrijetekststructuur"><bdi class="secno">5.4 </bdi>Domein Vrijetekststructuur</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_A509DD9D_C20A_4e73_8C68_39FB1D86F894"><bdi class="secno">5.4.1 </bdi> VrijeTekst - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-1"><bdi class="secno">5.4.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Vrijetekststructuur_Hoofdlijn"><bdi class="secno">5.4.2.1 </bdi> Hoofdlijn</a></li><li class="tocline"><a class="tocxref" href="#global_class_Vrijetekststructuur_VrijetekstAnnotatie"><bdi class="secno">5.4.2.2 </bdi> VrijetekstAnnotatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-1"><bdi class="secno">5.4.3 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-1"><bdi class="secno">5.4.3.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Vrijetekststructuur_Hoofdlijn"><bdi class="secno">5.4.3.1.1 </bdi> Hoofdlijn</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Vrijetekststructuur_VrijetekstAnnotatie"><bdi class="secno">5.4.3.1.2 </bdi> VrijetekstAnnotatie</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_GebiedsAanwijzing"><bdi class="secno">5.5 </bdi>Domein GebiedsAanwijzing</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_68619F0B_3BA7_4b81_B534_F083EEBDB8AA"><bdi class="secno">5.5.1 </bdi> Gebiedsaanwijzing - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-2"><bdi class="secno">5.5.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Beperkingengebied"><bdi class="secno">5.5.2.1 </bdi> Beperkingengebied</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Bodem"><bdi class="secno">5.5.2.2 </bdi> Bodem</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Bouw"><bdi class="secno">5.5.2.3 </bdi> Bouw</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Defensie"><bdi class="secno">5.5.2.4 </bdi> Defensie</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Energievoorziening"><bdi class="secno">5.5.2.5 </bdi> Energievoorziening</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Erfgoed"><bdi class="secno">5.5.2.6 </bdi> Erfgoed</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_ExterneVeiligheid"><bdi class="secno">5.5.2.7 </bdi> ExterneVeiligheid</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Functie"><bdi class="secno">5.5.2.8 </bdi> Functie</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Geluid"><bdi class="secno">5.5.2.9 </bdi> Geluid</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Geur"><bdi class="secno">5.5.2.10 </bdi> Geur</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Landschap"><bdi class="secno">5.5.2.11 </bdi> Landschap</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Leiding"><bdi class="secno">5.5.2.12 </bdi> Leiding</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Lucht"><bdi class="secno">5.5.2.13 </bdi> Lucht</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Mijnbouw"><bdi class="secno">5.5.2.14 </bdi> Mijnbouw</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Natuur"><bdi class="secno">5.5.2.15 </bdi> Natuur</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Recreatie"><bdi class="secno">5.5.2.16 </bdi> Recreatie</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_RuimtelijkGebruik"><bdi class="secno">5.5.2.17 </bdi> RuimtelijkGebruik</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Verkeer"><bdi class="secno">5.5.2.18 </bdi> Verkeer</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Waterenwatersysteem"><bdi class="secno">5.5.2.19 </bdi> Water en watersysteem</a></li></ol></li><li class="tocline"><a class="tocxref" href="#referentielijsten-0"><bdi class="secno">5.5.3 </bdi>Referentielijsten </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Beperkingengebiedgroep"><bdi class="secno">5.5.3.1 </bdi>Referentielijst Beperkingengebiedgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Bodemgroep"><bdi class="secno">5.5.3.2 </bdi>Referentielijst Bodemgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Bouwgroep"><bdi class="secno">5.5.3.3 </bdi>Referentielijst Bouwgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Defensiegroep"><bdi class="secno">5.5.3.4 </bdi>Referentielijst Defensiegroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Energievoorzieninggroep"><bdi class="secno">5.5.3.5 </bdi>Referentielijst Energievoorzieninggroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Erfgoedgroep"><bdi class="secno">5.5.3.6 </bdi>Referentielijst Erfgoedgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Externeveiligheidgroep"><bdi class="secno">5.5.3.7 </bdi>Referentielijst Externeveiligheidgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Functiegroep"><bdi class="secno">5.5.3.8 </bdi>Referentielijst Functiegroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Geluidgroep"><bdi class="secno">5.5.3.9 </bdi>Referentielijst Geluidgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Geurgroep"><bdi class="secno">5.5.3.10 </bdi>Referentielijst Geurgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Landschapgroep"><bdi class="secno">5.5.3.11 </bdi>Referentielijst Landschapgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Leidinggroep"><bdi class="secno">5.5.3.12 </bdi>Referentielijst Leidinggroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Luchtgroep"><bdi class="secno">5.5.3.13 </bdi>Referentielijst Luchtgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Mijnbouwgroep"><bdi class="secno">5.5.3.14 </bdi>Referentielijst Mijnbouwgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Natuurgroep"><bdi class="secno">5.5.3.15 </bdi>Referentielijst Natuurgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Recreatiegroep"><bdi class="secno">5.5.3.16 </bdi>Referentielijst Recreatiegroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Ruimtelijkgebruikgroep"><bdi class="secno">5.5.3.17 </bdi>Referentielijst Ruimtelijkgebruikgroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Verkeergroep"><bdi class="secno">5.5.3.18 </bdi>Referentielijst Verkeergroep</a></li><li class="tocline"><a class="tocxref" href="#global_class_GebiedsAanwijzing_Waterenwatersysteemgroep"><bdi class="secno">5.5.3.19 </bdi>Referentielijst Water-en-watersysteemgroep</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-2"><bdi class="secno">5.5.4 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-2"><bdi class="secno">5.5.4.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Beperkingengebied"><bdi class="secno">5.5.4.1.1 </bdi> Beperkingengebied</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Bodem"><bdi class="secno">5.5.4.1.2 </bdi> Bodem</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Bouw"><bdi class="secno">5.5.4.1.3 </bdi> Bouw</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Defensie"><bdi class="secno">5.5.4.1.4 </bdi> Defensie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Energievoorziening"><bdi class="secno">5.5.4.1.5 </bdi> Energievoorziening</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Erfgoed"><bdi class="secno">5.5.4.1.6 </bdi> Erfgoed</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_ExterneVeiligheid"><bdi class="secno">5.5.4.1.7 </bdi> ExterneVeiligheid</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Functie"><bdi class="secno">5.5.4.1.8 </bdi> Functie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Geluid"><bdi class="secno">5.5.4.1.9 </bdi> Geluid</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Geur"><bdi class="secno">5.5.4.1.10 </bdi> Geur</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Landschap"><bdi class="secno">5.5.4.1.11 </bdi> Landschap</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Leiding"><bdi class="secno">5.5.4.1.12 </bdi> Leiding</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Lucht"><bdi class="secno">5.5.4.1.13 </bdi> Lucht</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Mijnbouw"><bdi class="secno">5.5.4.1.14 </bdi> Mijnbouw</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Natuur"><bdi class="secno">5.5.4.1.15 </bdi> Natuur</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Recreatie"><bdi class="secno">5.5.4.1.16 </bdi> Recreatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_RuimtelijkGebruik"><bdi class="secno">5.5.4.1.17 </bdi> RuimtelijkGebruik</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Verkeer"><bdi class="secno">5.5.4.1.18 </bdi> Verkeer</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Waterenwatersysteem"><bdi class="secno">5.5.4.1.19 </bdi> Water en watersysteem</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_Kaart"><bdi class="secno">5.6 </bdi>Domein Kaart</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_05C0484F_9087_4b72_8486_808397DB2A00"><bdi class="secno">5.6.1 </bdi> Kaart - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-3"><bdi class="secno">5.6.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Kaart_Kaart"><bdi class="secno">5.6.2.1 </bdi> Kaart</a></li><li class="tocline"><a class="tocxref" href="#global_class_Kaart_Kaartlaag"><bdi class="secno">5.6.2.2 </bdi> Kaartlaag</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptypen-1"><bdi class="secno">5.6.3 </bdi>Gegevensgroeptypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_Kaart_Kaartextent"><bdi class="secno">5.6.3.1 </bdi>Gegevensgroep Kaartextent</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-3"><bdi class="secno">5.6.4 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-3"><bdi class="secno">5.6.4.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Kaart_Kaart"><bdi class="secno">5.6.4.1.1 </bdi> Kaart</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Kaart_Kaartlaag"><bdi class="secno">5.6.4.1.2 </bdi> Kaartlaag</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-details-1"><bdi class="secno">5.6.4.2 </bdi>Gegevensgroeptype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Kaart_Kaartextent"><bdi class="secno">5.6.4.2.1 </bdi>Gegevensgroeptype Kaartextent</a></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#global_package_OWaanlevering"><bdi class="secno">5.7 </bdi>Domein OW-aanlevering</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_7392C19B_CAC6_4040_8880_F6CD36AE7BF0"><bdi class="secno">5.7.1 </bdi> OW-aanlevering - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen-4"><bdi class="secno">5.7.2 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_OWaanlevering_Gebiedsaanwijzing"><bdi class="secno">5.7.2.1 </bdi> Gebiedsaanwijzing</a></li><li class="tocline"><a class="tocxref" href="#global_class_OWaanlevering_OWmanifest"><bdi class="secno">5.7.2.2 </bdi> OW-manifest</a></li><li class="tocline"><a class="tocxref" href="#global_class_OWaanlevering_OWobject"><bdi class="secno">5.7.2.3 </bdi> OW-object</a></li><li class="tocline"><a class="tocxref" href="#global_class_OWaanlevering_OPobjectAnnotatie"><bdi class="secno">5.7.2.4 </bdi> OP-objectAnnotatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptypen-2"><bdi class="secno">5.7.3 </bdi>Gegevensgroeptypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_OWaanlevering_OWAanlevering"><bdi class="secno">5.7.3.1 </bdi>Gegevensgroep OW-Aanlevering</a></li></ol></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details-4"><bdi class="secno">5.7.4 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details-4"><bdi class="secno">5.7.4.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_OWaanlevering_Gebiedsaanwijzing"><bdi class="secno">5.7.4.1.1 </bdi> Gebiedsaanwijzing</a></li><li class="tocline"><a class="tocxref" href="#detail_class_OWaanlevering_OWmanifest"><bdi class="secno">5.7.4.1.2 </bdi> OW-manifest</a></li><li class="tocline"><a class="tocxref" href="#detail_class_OWaanlevering_OWobject"><bdi class="secno">5.7.4.1.3 </bdi> OW-object</a></li><li class="tocline"><a class="tocxref" href="#detail_class_OWaanlevering_OPobjectAnnotatie"><bdi class="secno">5.7.4.1.4 </bdi> OP-objectAnnotatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gegevensgroeptype-details-2"><bdi class="secno">5.7.4.2 </bdi>Gegevensgroeptype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_OWaanlevering_OWAanlevering"><bdi class="secno">5.7.4.2.1 </bdi>Gegevensgroeptype OW-Aanlevering</a></li></ol></li></ol></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#lis"><bdi class="secno">6. </bdi>Inhoud van waardelijsten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#referentielijst-inhoud"><bdi class="secno">6.1 </bdi>Referentielijst inhoud </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Activiteitengroep"><bdi class="secno">6.1.1 </bdi>Referentielijst Activiteitengroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Eenheid"><bdi class="secno">6.1.2 </bdi>Referentielijst Eenheid</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Typenorm"><bdi class="secno">6.1.3 </bdi>Referentielijst Typenorm</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingsnormgroep"><bdi class="secno">6.1.4 </bdi>Referentielijst Omgevingsnormgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Thema"><bdi class="secno">6.1.5 </bdi>Referentielijst Thema</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Omgevingswaardegroep"><bdi class="secno">6.1.6 </bdi>Referentielijst Omgevingswaardegroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Adressaat"><bdi class="secno">6.1.7 </bdi>Referentielijst Adressaat</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_InstrumentType"><bdi class="secno">6.1.8 </bdi>Referentielijst InstrumentType</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Activiteitregelkwalificatie"><bdi class="secno">6.1.9 </bdi>Referentielijst Activiteitregelkwalificatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_Artikelstructuur_Idealisatie"><bdi class="secno">6.1.10 </bdi>Referentielijst Idealisatie</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Beperkingengebiedgroep"><bdi class="secno">6.1.11 </bdi>Referentielijst Beperkingengebiedgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Bodemgroep"><bdi class="secno">6.1.12 </bdi>Referentielijst Bodemgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Bouwgroep"><bdi class="secno">6.1.13 </bdi>Referentielijst Bouwgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Defensiegroep"><bdi class="secno">6.1.14 </bdi>Referentielijst Defensiegroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Energievoorzieninggroep"><bdi class="secno">6.1.15 </bdi>Referentielijst Energievoorzieninggroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Erfgoedgroep"><bdi class="secno">6.1.16 </bdi>Referentielijst Erfgoedgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Externeveiligheidgroep"><bdi class="secno">6.1.17 </bdi>Referentielijst Externeveiligheidgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Functiegroep"><bdi class="secno">6.1.18 </bdi>Referentielijst Functiegroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Geluidgroep"><bdi class="secno">6.1.19 </bdi>Referentielijst Geluidgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Geurgroep"><bdi class="secno">6.1.20 </bdi>Referentielijst Geurgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Landschapgroep"><bdi class="secno">6.1.21 </bdi>Referentielijst Landschapgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Leidinggroep"><bdi class="secno">6.1.22 </bdi>Referentielijst Leidinggroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Luchtgroep"><bdi class="secno">6.1.23 </bdi>Referentielijst Luchtgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Mijnbouwgroep"><bdi class="secno">6.1.24 </bdi>Referentielijst Mijnbouwgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Natuurgroep"><bdi class="secno">6.1.25 </bdi>Referentielijst Natuurgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Recreatiegroep"><bdi class="secno">6.1.26 </bdi>Referentielijst Recreatiegroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Ruimtelijkgebruikgroep"><bdi class="secno">6.1.27 </bdi>Referentielijst Ruimtelijkgebruikgroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Verkeergroep"><bdi class="secno">6.1.28 </bdi>Referentielijst Verkeergroep</a></li><li class="tocline"><a class="tocxref" href="#detail_class_GebiedsAanwijzing_Waterenwatersysteemgroep"><bdi class="secno">6.1.29 </bdi>Referentielijst Water-en-watersysteemgroep</a></li></ol></li><li class="tocline"><a class="tocxref" href="#enumeratie-inhoud"><bdi class="secno">6.2 </bdi>Enumeratie inhoud </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_OWaanlevering_OWstatus"><bdi class="secno">6.2.1 </bdi>Enumeratie details OW-status</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#conformance"><bdi class="secno">7. </bdi>Conformiteit</a></li><li class="tocline"><a class="tocxref" href="#tof"><bdi class="secno">8. </bdi>Lijst met figuren</a></li><li class="tocline"><a class="tocxref" href="#index"><bdi class="secno">A. </bdi>Index</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#index-defined-here"><bdi class="secno">A.1 </bdi>Begrippen gedefinieerd door deze specificatie</a></li><li class="tocline"><a class="tocxref" href="#index-defined-elsewhere"><bdi class="secno">A.2 </bdi>Begrippen gedefinieerd door verwijzing</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></ol></li></ol></nav>
<section id="voorwoord"><h2 id="x1-voorwoord"><bdi class="secno">1. </bdi>Voorwoord</h2>
<p>Dit document is tot stand gekomen binnen het programma DSO-Omgegevingswet. Het
bevat de formele vastlegging en beschrijving van het Conceptuele
Informatiemodel Omgevingswet.</p>
<p>Dit informatiemodel volgt de regels voor opstellen van een
informatiemodel zoals vastgelegd in de [<cite><a class="bibref" data-link-type="biblio" href="#bib-mim" title="MIM - Metamodel Informatie Modellering">MIM</a></cite>] standaard en wordt uitgedrukt in
UML.</p>
</section>
<section id="inleiding"><h2 id="x2-inleiding"><bdi class="secno">2. </bdi>Inleiding</h2>
<p>In een stelsel van samenhangende voorzieningen, zoals het Digitaal Stelsel
Omgevingswet (DSO), is semantische interoperabiliteit essentieel om de
verschillende stelselonderdelen in staat te stellen relevante informatie op een
betekenisvolle manier met elkaar uit te wisselen. Voor de dienstverlening
rondom de Omgevingswet moet altijd duidelijk zijn welke betekenis wordt
toegekend aan woorden (begrippenkader) en wat de relatie is tussen begrippen,
vanuit de inhoud van die begrippen (semantische relaties). Dit modelleren we
in conceptuele informatiemodellen (CIM) die een relatief stabiel raamwerk voor
het werken onder architectuur en de basis voor de implementatie biedt.</p>
<blockquote>
<p>Conceptuele informatiemodellen (CIMs) – Definitie volgens MIM [<cite><a class="bibref" data-link-type="biblio" href="#bib-mim" title="MIM - Metamodel Informatie Modellering">MIM</a></cite>]
Een conceptueel informatiemodel beschrijft de modellering van de werkelijkheid
binnen het beschouwde domein door middel van de beschrijving van welke
informatie (data met betekenis en structuur) een rol speelt. Een conceptueel
informatiemodel is hierbij onafhankelijk van het ontwerp van en de
implementatie in systemen. Het geeft een zo getrouw mogelijke beschrijving van
die werkelijkheid en is in natuurlijke taal geformuleerd.</p>
<p>Een dergelijk model definieert het ‘wat’: welke 'onderwerpen van gesprek'
('concepten', 'dingen’) worden onderscheiden in de beschouwde werkelijkheid.
Wat betekenen zij, hoe verhouden ze zich tot elkaar en welke informatie is
daarvan relevant. Deze informatie wordt gemodelleerd als informatieobjecten
met eigenschappen/kenmerken, oftewel waarvoor data beschikbaar is (of zal
zijn) en wordt ondergebracht in een informatiemodel. Dit informatiemodel
dient als taal waarmee domeinexperts kunnen communiceren met
informatieanalisten en verschaft een eenduidige interpretatie van die
werkelijkheid ten behoeve van deze communicatie.</p>
<p>Met conceptueel wordt niet bedoeld abstract of hoog over, de beschrijvingen
van de informatie die beschikbaar is zijn heel precies en concreet.</p>
<p>Een conceptueel informatiemodel wordt opgesteld voor gebruik door mensen,
zodat ‘de business’ en de ICT-specialisten elkaar (gaan) begrijpen voor wat
betreft de informatie die in het domein wordt geregistreerd en/of kan worden
uitgewisseld.</p>
</blockquote>
<p>Binnen DSO worden verschillende informatiedomeinen onderkend: elk
informatiedomein groepeert informatieobjecten met maximale samenhang en vormt
logische bouwblokken voor de informatievoorziening van DSO. </p>
<p>De informatiedomeinen zijn de basis voor de indeling van de informatiemodellen.
Elk informatiedomein wordt op conceptueel niveau beschreven door een
conceptueel informatiemodel (CIM) dat richting geeft aan de uitwerking van het
informatiedomein en de samenhang met aanpalende domeinen borgt.</p>
<figure id="Figure-CIM-Overzicht">
<img src="media/CIM-Overzicht.png" alt="">
<figcaption><a class="self-link" href="#Figure-CIM-Overzicht">Figuur <bdi class="figno">1</bdi></a> <span class="fig-title">Overzicht van alle Conceptuele Informatiemodellen in het DSO</span></figcaption>
</figure>
<p>De onderstaande conceptuele informatiemodellen zijn beschikbaar¬. De modellen
zijn in verschillende stadia van ontwikkeling en de links kunnen zowel naar
ontwikkel- als publicatieversies verwijzen.</p>
<ul>
<li><a href="https://geonovum.github.io/dso-cim-am/">CIM-AM</a>: Conceptueel Informatiemodel Aanvragen en meldingen.</li>
<li><a href="https://geonovum.github.io/dso-cim-hlp/">CIM-HLP</a>: Conceptueel Informatiemodel Help en ondersteuning.</li>
<li><a href="https://geonovum.github.io/dso-cim-mac/">CIM-MAC</a> Conceptueel Informatiemodel Machtigen.</li>
<li><a href="https://geonovum.github.io/dso-cim-oi/">CIM-OI</a>: Conceptueel Informatiemodel Omgevingsinformatie.</li>
<li><a href="https://geonovum.github.io/dso-cim-op/">CIM-OP</a>: Conceptueel Informatiemodel Officiële publicaties.</li>
<li><a href="https://geonovum.github.io/dso-cim-org/">CIM-ORG</a>: Conceptueel Informatiemodel (Overheids-)Organisaties.</li>
<li><a href="https://geonovum.github.io/dso-cim-ow/">CIM-OW</a>: Conceptueel Informatiemodel Omgevingswet.</li>
<li><a href="https://geonovum.github.io/dso-cim-pdc/">CIM-PDC</a>: Conceptueel Informatiemodel Producten- en Dienstencatalogus.</li>
<li><a href="https://geonovum.github.io/dso-cim-swf/">CIM-SWF</a>: Conceptueel Informatiemodel Samenwerken.</li>
<li><a href="https://geonovum.github.io/dso-cim-tr/">CIM-TR</a>: Conceptueel Informatiemodel Toepasbare regels.</li>
</ul>
<p>Alhoewel elk conceptueel informatiemodel één informatiedomein afbeeldt, zijn er
dwarsverbanden en afhankelijkheden tussen de verschillende domeinen. De
conceptuele informatiemodellen worden derhalve in samenhang beheert en
ontwikkelt, teneinde de semantische interoperabiliteit in en met het DSO te
kunnen waarborgen.</p>
<section id="conceptueel-informatiemodel-omgevingswet"><h3 id="x2-1-conceptueel-informatiemodel-omgevingswet"><bdi class="secno">2.1 </bdi>Conceptueel Informatiemodel Omgevingswet.</h3>
<p>Het motto van de Omgevingswet is ‘Ruimte voor ontwikkeling, waarborgen voor kwaliteit’. De Omgevingswet staat voor een goede balans tussen het benutten en beschermen van de fysieke leefomgeving. Met benutten wordt bedoeld het doelmatig beheren, gebruiken en ontwikkelen van de fysieke leefomgeving om maatschappelijke behoeften te vervullen. Bij beschermen gaat het over het bereiken en in stand houden van een veilige en gezonde fysieke leefomgeving en een goede omgevingskwaliteit.</p>
</section><section id="nieuw-stelsel-omgevingsrecht"><h3 id="x2-2-nieuw-stelsel-omgevingsrecht"><bdi class="secno">2.2 </bdi>Nieuw stelsel omgevingsrecht</h3>
<p>De Omgevingswet bundelt de wetgeving en regels voor ruimte, wonen, infrastructuur, milieu, natuur en water. Met de Omgevingswet wordt het huidige stelsel van ruimtelijke regels volledig herzien en wordt het fundament van het nieuwe stelsel voor het omgevingsrecht gelegd. Bij dit nieuwe stelsel hoort een digitale omgeving waar de dienstverlening efficiënt en gedigitaliseerd kan plaatsvinden, dit wordt ook wel het Digitaal Stelsel Omgevingswet (DSO) genoemd.</p>
<p>Dit document duidt de verschillende onderwerpen en kenmerken die in de Omgevingswet een rol spelen. "<em>Een conceptueel informatiemodel structureert het begrippenkader en definieert het ‘wat’: welke ‘concepten’ (‘dingen’) worden onderscheiden (in de beschouwde werkelijkheid), wat betekenen zij, hoe verhouden ze zich tot elkaar en welke informatie (eigenschappen) is daarvan relevant</em>" [<cite><a class="bibref" data-link-type="biblio" href="#bib-mim" title="MIM - Metamodel Informatie Modellering">MIM</a></cite>]. Deze informatie wordt beschreven in de taal, terminologie en definities van dit domein. De informatie in het DSO betreft o.a. juridische regels over activiteiten, functies, omgevingsnormen, omgevingswaarden, beperkingengebieden, en de gebieden waar deze regels van toepassing zijn. Het conceptuele informatiemodel (CIM) in dit document beschrijft daarmee dat deze gegevens beschikbaar zijn vanuit het DSO.</p>
<p>Er is een sterke relatie met dit conceptuele informatiemodel omgevingswet (CIM-OW) en het informatiemodel van het domein van officiële publicaties (CIM-OP). De tekst van een artikel of lid in een regeling die tot het domein van de Omgevingswet behoort gaat inhoudelijk over de in de vorige alinea genoemde informatie. Deze informatie is van belang voor het DSO.</p>
<p>Dit CIM bestaat uit een beschrijving van de informatie, in tekst en UML en is object-georiënteerd. De beschrijving volgt hierbij een standaard voor het beschrijven van informatiemodellen, te weten het metamodel voor informatiemodellen [<cite><a class="bibref" data-link-type="biblio" href="#bib-mim" title="MIM - Metamodel Informatie Modellering">MIM</a></cite>].</p>
</section><section id="toelichting-bij-informatiekundig-perspectief"><h3 id="x2-3-toelichting-bij-informatiekundig-perspectief"><bdi class="secno">2.3 </bdi>Toelichting bij informatiekundig perspectief</h3>
<p>De Omgevingswet is een domein waarin juridische teksten, met juridische regels, en hun werkingsgebieden centraal staan. Dit CIM-OW beschouwt de informatie die hierin aanwezig is in een informatiekundig opzicht. Hiermee wordt bedoeld dat het gaat om welke informatie aanwezig is in deze tekst. </p>
<p>Bijvoorbeeld, wanneer in de juridische tekst een juridische regel aanwezig is die over een functie gaat en over een aantal activiteiten, zoals:</p>
<blockquote>
<p>Ter plaatse van het werkingsgebied van de functie 'Centrumgebied' is het verrichten van de activiteit wonen toegestaan.</p>
</blockquote>
<p>In informatiekundig opzicht betekent dit:</p>
<ul>
<li>een juridische regel – te weten de tekst van de juridische regel<ul>
<li>een relatie naar een locatie/gebied, in de fysieke leefomgeving, waar de regel in werking is</li>
</ul>
</li>
<li>een gebied (in de fysieke leefomgeving) met een geometrie (van het centrumgebied)</li>
<li>een gebiedsaanwijzing van het type functie – centrumgebied<ul>
<li>een relatie tussen de juridische regel en de gebiedsaanwijzing</li>
<li>een relatie naar een locatie/gebied, in de fysieke leefomgeving, waar de functie voor geldt</li>
</ul>
</li>
<li>een activiteit – wonen<ul>
<li>een relatie tussen de juridische regel en de activiteit</li>
<li>een relatie naar een locatie/gebied, in de fysieke leefomgeving, waar de activiteit voor geldt.</li>
</ul>
</li>
</ul>
<p>Er wordt in het CIM-OW een verschil gemaakt tussen de activiteit met de naam ‘wonen’ en het woord ‘wonen’ dat voorkomt in de tekst van de juridische regel. Zo is ook het centrumgebied uit de tekst van de juridische regel een ander object dan de gebiedsaanwijzing van het centrumgebied.</p>
</section></section>
<section id="toepassingsgebied"><h2 id="x3-toepassingsgebied"><bdi class="secno">3. </bdi>Toepassingsgebied</h2>
<p>Het toepassingsdomein van deze standaard is het DSO van de omgevingswet.</p>
</section>
<section id="overzicht"><h2 id="x4-overzicht"><bdi class="secno">4. </bdi>Overzicht</h2>
<section id="naam-en-acroniem"><h3 id="x4-1-naam-en-acroniem"><bdi class="secno">4.1 </bdi>Naam en Acroniem</h3>
<p>Conceptueel Informatiemodel Omgevingswet (CIM-OW)</p>
</section><section id="termen-en-definities"><h3 id="x4-2-termen-en-definities"><bdi class="secno">4.2 </bdi>Termen en definities</h3>
</section><section id="symbolen-en-afkortingen"><h3 id="x4-3-symbolen-en-afkortingen"><bdi class="secno">4.3 </bdi>Symbolen en afkortingen</h3>
<ul>
<li><strong>CIM</strong> Conceptueel Informatiemodel</li>
<li><strong>DSO</strong> Digitaal Stelsel Omgevingswet.</li>
<li><strong>MIM</strong> Metamodel voor Informatiemodellen.</li>
<li><strong>STOP</strong> Standaard Officiële Publicaties.</li>
<li><strong>TPOD</strong> Toepassingsprofiel Omgevingswet.</li>
<li><strong>UML</strong> Universal Modeling Language.</li>
</ul>
</section></section>
<section id="cat" class="normative"><h2 id="x5-gegevensdefinitie"><bdi class="secno">5. </bdi>Gegevensdefinitie</h2><section id="global_packages"><h3 id="x5-1-model-dso-cim-ow"><bdi class="secno">5.1 </bdi>Model dso-cim-ow</h3><section id="EAID_E3A46D6F_3ED0_4808_82AD_D7173DDFDAC4"><h4 id="x5-1-1-ow-op-overzicht"><bdi class="secno">5.1.1 </bdi> OW-OP - overzicht</h4><div class="imageinfo overview"><figure class="uml-diagram" id="fig-diagram-ow-op"><img id="EAID_E3A46D6F_3ED0_4808_82AD_D7173DDFDAC4" src="data/Images/EAID_E3A46D6F_3ED0_4808_82AD_D7173DDFDAC4.png" usemap="#imagemap-EAID_E3A46D6F_3ED0_4808_82AD_D7173DDFDAC4" alt="Diagram: OW-objecten maken een Regeling machine leesbaar en horen altijd bij precies één Regeling. OP-objectAnnotatie objecten zij OW-objecten die een 1 op 1 koppeling met een wId element in een Regeling hebben. Alle andere OW-objecten die bij de Regeling horen zijn via relaties aan de OP-objectannotatie en dus aan een DocumentComponent gekoppeld. Er zijn twee soorten annotaties: In Regelingen met artikelstructuur worden RegeltekstAnnotaties gebruikt die altijd naar een Artikel of Lid en verwijzen. In regelingen met een vrije-tekststrutuur verwijst een OP-objectannotatie altijd naar een Divisie of Divisietekst"><figcaption><a class="self-link" href="#fig-diagram-ow-op">Figuur <bdi class="figno">2</bdi></a> <span class="fig-title"> ‒ Diagram: OW-OP</span></figcaption></figure><map name="imagemap-EAID_E3A46D6F_3ED0_4808_82AD_D7173DDFDAC4"><area shape="rect" alt="OW-object" coords="193,23,401,145" href="#global_class_OWaanlevering_OWobject"><area shape="rect" alt="VrijetekstAnnotatie" coords="295,365,510,487" href="#global_class_Vrijetekststructuur_VrijetekstAnnotatie"><area shape="rect" alt="RegeltekstAnnotatie" coords="100,365,267,476" href="#global_class_Artikelstructuur_RegeltekstAnnotatie"><area shape="rect" alt="OP-objectAnnotatie" coords="193,209,369,263" href="#global_class_OWaanlevering_OPobjectAnnotatie"></map><p>
</p><p>OW-objecten maken een Regeling machine leesbaar en horen altijd bij precies één Regeling. OP-objectAnnotatie objecten zij OW-objecten die een 1 op 1 koppeling met een wId element in een Regeling hebben. Alle andere OW-objecten die bij de Regeling horen zijn via relaties aan de OP-objectannotatie en dus aan een DocumentComponent gekoppeld.</p>
<p>Er zijn twee soorten annotaties: </p>
<p>In Regelingen met artikelstructuur worden RegeltekstAnnotaties gebruikt die altijd naar een Artikel of Lid en verwijzen. In regelingen met een vrije-tekststrutuur verwijst een OP-objectannotatie altijd naar een Divisie of Divisietekst</p>
<p></p></div></section><section id="EAID_199FD13D_8495_487c_8D35_8C11BB634BAE"><h4 id="x5-1-2-ow-objecten-overzicht"><bdi class="secno">5.1.2 </bdi> OW-Objecten - overzicht</h4><div class="imageinfo overview"><figure class="uml-diagram" id="fig-diagram-ow-objecten"><img id="EAID_199FD13D_8495_487c_8D35_8C11BB634BAE" src="data/Images/EAID_199FD13D_8495_487c_8D35_8C11BB634BAE.png" usemap="#imagemap-EAID_199FD13D_8495_487c_8D35_8C11BB634BAE" alt="Diagram: Een Regeling wordt machine leesbaar gemaakt door daar OW-objecten aan toe te voegen. Dit diagram bevat een overzicht van allen OW-obecten die kunnen worden toegevoegd."><figcaption><a class="self-link" href="#fig-diagram-ow-objecten">Figuur <bdi class="figno">3</bdi></a> <span class="fig-title"> ‒ Diagram: OW-Objecten</span></figcaption></figure><map name="imagemap-EAID_199FD13D_8495_487c_8D35_8C11BB634BAE"><area shape="rect" alt="Taakuitoefening" coords="1249,811,1434,933" href="#global_class_Artikelstructuur_Taakuitoefening"><area shape="rect" alt="Instrument" coords="1006,804,1228,908" href="#global_class_Artikelstructuur_Instrument"><area shape="rect" alt="OW-status" coords="321,103,427,201" href="#detail_class_OWaanlevering_OWstatus"><area shape="rect" alt="OP-objectAnnotatie" coords="1075,259,1219,347" href="#global_class_OWaanlevering_OPobjectAnnotatie"><area shape="rect" alt="Gebiedsaanwijzing" coords="639,261,899,401" href="#global_class_OWaanlevering_Gebiedsaanwijzing"><area shape="rect" alt="VrijetekstAnnotatie" coords="1185,419,1376,558" href="#global_class_Vrijetekststructuur_VrijetekstAnnotatie"><area shape="rect" alt="Hoofdlijn" coords="603,427,772,549" href="#global_class_Vrijetekststructuur_Hoofdlijn"><area shape="rect" alt="Norm" coords="116,451,334,629" href="#global_class_Artikelstructuur_Norm"><area shape="rect" alt="Pons" coords="932,261,1041,317" href="#global_class_Artikelstructuur_Pons"><area shape="rect" alt="Gebiedengroep" coords="722,954,845,1018" href="#global_class_Locatie_Gebiedengroep"><area shape="rect" alt="Gebied" coords="698,1036,899,1138" href="#global_class_Locatie_Gebied"><area shape="rect" alt="Puntengroep" coords="334,954,457,1011" href="#global_class_Locatie_Puntengroep"><area shape="rect" alt="Punt" coords="250,1029,446,1131" href="#global_class_Locatie_Punt"><area shape="rect" alt="Lijnengroep" coords="529,948,653,1011" href="#global_class_Locatie_Lijnengroep"><area shape="rect" alt="Lijn" coords="475,1029,677,1131" href="#global_class_Locatie_Lijn"><area shape="rect" alt="Juridische regel" coords="792,419,988,558" href="#global_class_Artikelstructuur_Juridischeregel"><area shape="rect" alt="RegeltekstAnnotatie" coords="1006,436,1161,558" href="#global_class_Artikelstructuur_RegeltekstAnnotatie"><area shape="rect" alt="Regel voor iedereen" coords="772,655,1114,755" href="#global_class_Artikelstructuur_Regelvooriedereen"><area shape="rect" alt="Omgevingswaarderegel" coords="614,632,759,688" href="#global_class_Artikelstructuur_Omgevingswaarderegel"><area shape="rect" alt="Instructieregel" coords="1135,639,1235,710" href="#global_class_Artikelstructuur_Instructieregel"><area shape="rect" alt="Activiteit" coords="14,256,186,382" href="#global_class_Artikelstructuur_Activiteit"><area shape="rect" alt="Omgevingswaarde" coords="222,714,432,836" href="#global_class_Artikelstructuur_Omgevingswaarde"><area shape="rect" alt="Omgevingsnorm" coords="14,714,212,836" href="#global_class_Artikelstructuur_Omgevingsnorm"><area shape="rect" alt="Locatie" coords="483,755,684,859" href="#global_class_Locatie_Locatie"><area shape="rect" alt="Kaartlaag" coords="228,256,549,419" href="#global_class_Kaart_Kaartlaag"><area shape="rect" alt="Kaart" coords="363,460,569,622" href="#global_class_Kaart_Kaart"><area shape="rect" alt="OW-object" coords="475,41,706,163" href="#global_class_OWaanlevering_OWobject"></map><p>
</p><p>Een Regeling wordt machine leesbaar gemaakt door daar OW-objecten aan toe te voegen. Dit diagram bevat een overzicht van allen OW-obecten die kunnen worden toegevoegd.</p>
<p></p></div></section></section><section id="global_package_Artikelstructuur"><h3 id="x5-2-domein-artikelstructuur"><bdi class="secno">5.2 </bdi>Domein Artikelstructuur</h3><section id="EAID_39BFBADA_1173_4408_A26C_16716D45ACFC"><h4 id="x5-2-1-ow-regeltekst-annotaties-overzicht"><bdi class="secno">5.2.1 </bdi> OW - RegeltekstAnnotaties - overzicht</h4><div class="imageinfo overview"><figure class="uml-diagram" id="fig-diagram-ow-regeltekst-annotaties"><img id="EAID_39BFBADA_1173_4408_A26C_16716D45ACFC" src="data/Images/EAID_39BFBADA_1173_4408_A26C_16716D45ACFC.png" usemap="#imagemap-EAID_39BFBADA_1173_4408_A26C_16716D45ACFC" alt="Diagram: In een Regeling met Artikelstructuur bevat iedere"><figcaption><a class="self-link" href="#fig-diagram-ow-regeltekst-annotaties">Figuur <bdi class="figno">4</bdi></a> <span class="fig-title"> ‒ Diagram: OW - RegeltekstAnnotaties</span></figcaption></figure><map name="imagemap-EAID_39BFBADA_1173_4408_A26C_16716D45ACFC"><area shape="rect" alt="Pons" coords="133,1223,256,1291" href="#global_class_Artikelstructuur_Pons"><area shape="rect" alt="Instrument" coords="818,825,1041,929" href="#global_class_Artikelstructuur_Instrument"><area shape="rect" alt="Taakuitoefening" coords="811,705,996,809" href="#global_class_Artikelstructuur_Taakuitoefening"><area shape="rect" alt="ActiviteitLocatieaanduiding" coords="457,705,773,826" href="#global_class_Artikelstructuur_ActiviteitLocatieaanduiding"><area shape="rect" alt="OP-objectAnnotatie" coords="131,45,254,141" href="#global_class_OWaanlevering_OPobjectAnnotatie"><area shape="rect" alt="Omgevingswaarderegel" coords="1286,568,1458,627" href="#global_class_Artikelstructuur_Omgevingswaarderegel"><area shape="rect" alt="Regel voor iedereen" coords="438,555,793,664" href="#global_class_Artikelstructuur_Regelvooriedereen"><area shape="rect" alt="Instructieregel" coords="862,555,1057,621" href="#global_class_Artikelstructuur_Instructieregel"><area shape="rect" alt="Functie" coords="215,713,371,821" href="#global_class_GebiedsAanwijzing_Functie"><area shape="rect" alt="Beperkingengebied" coords="142,855,354,963" href="#global_class_GebiedsAanwijzing_Beperkingengebied"><area shape="rect" alt="Gebiedsaanwijzing" coords="104,473,364,617" href="#global_class_OWaanlevering_Gebiedsaanwijzing"><area shape="rect" alt="Normwaarde" coords="1097,1198,1357,1316" href="#global_class_Artikelstructuur_Normwaarde"><area shape="rect" alt="RegeltekstAnnotatie" coords="53,203,349,394" href="#global_class_Artikelstructuur_RegeltekstAnnotatie"><area shape="rect" alt="Norm" coords="1123,726,1371,929" href="#global_class_Artikelstructuur_Norm"><area shape="rect" alt="Locatie" coords="484,1245,691,1372" href="#global_class_Locatie_Locatie"><area shape="rect" alt="Juridische regel" coords="602,254,852,401" href="#global_class_Artikelstructuur_Juridischeregel"><area shape="rect" alt="Omgevingswaarde" coords="1239,1052,1476,1168" href="#global_class_Artikelstructuur_Omgevingswaarde"><area shape="rect" alt="Omgevingsnorm" coords="977,1052,1219,1168" href="#global_class_Artikelstructuur_Omgevingsnorm"><area shape="rect" alt="Activiteit" coords="413,993,602,1137" href="#global_class_Artikelstructuur_Activiteit"></map><p>
</p><p>In een Regeling met Artikelstructuur bevat iedere</p>
<p></p></div></section><section id="objecttypen"><h4 id="x5-2-2-objecttypen"><bdi class="secno">5.2.2 </bdi>Objecttypen </h4>
<section id="global_class_Artikelstructuur_Instructieregel"><h5 id="x5-2-2-1-instructieregel"><bdi class="secno">5.2.2.1 </bdi> Instructieregel</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Instructieregel</td></tr><tr><th>Definitie</th><td>
<p>De beschrijving van een juridische regel met een instructie die betrekking heeft op een extern omgevingsdocument of een orgaan.</p>
</td></tr><tr><th>Toelichting</th><td>
<p>Het betreft hier juridische regel die instructie geeft aan andere overheden, gericht op externe omgevingsdocumenten, of een taakuitoefening.</p>
<p>Een ander omgevingsdocument is bijvoorbeeld een Omgevingsplan, Omgevingsverordening en Waterschapsverordening.</p>
<p>Een taakuitoefening is voor bijvoorbeeld een gemeentebestuur of een wildbeheereenheid.</p>
<p>Een instructieregel is alleen gericht op een Omgevingsnorm of een Gebiedsaanduiding, zoals een Functie of een Beperkingengebied (en eventueel meerdere). </p>
</td></tr><tr><th>Indicatie abstract object</th><td>Ja</td></tr></tbody></table>
<h6 id="overzicht-relaties">Overzicht relaties </h6>
<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>
Instructieregel
[ 0 .. * ]
<a class="link" href="#detail_association_Artikelstructuur_Instructieregel_omgevingsnormaanduiding">omgevingsnormaanduiding: omgevingsnormaanduiding</a>
<a class="link" href="#global_class_Artikelstructuur_Omgevingsnorm">Omgevingsnorm</a>
[ 0 .. * ]
</td><td>
<p>Bij een regel die een omgevingsnorm vastlegt geeft deze relatie aan om welke het gaat. De bijbehorende locatie(s) waar het om gaat is/zijn bij de normwaardes van de omgevingsnorm zelf te vinden</p>
</td></tr><tr><td>
Instructieregel
is specialisatie van
<a class="link" href="#global_class_Artikelstructuur_Juridischeregel">Juridische regel</a>
</td><td>
<p>De beschrijving van een regel met juridische werkingskracht.</p>
</td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_Omgevingswaarderegel"><h5 id="x5-2-2-2-omgevingswaarderegel"><bdi class="secno">5.2.2.2 </bdi> Omgevingswaarderegel</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Omgevingswaarderegel</td></tr><tr><th>Definitie</th><td>
<p>De beschrijving van een juridische regel gericht op een gestelde omgevingswaarde.</p>
</td></tr><tr><th>Toelichting</th><td>
<p>Het betreft hier een juridische regel die verplichtingen oplegt aan het bevoegd gezag dat deze regel opstelt.</p>
<p>Een omgevingswaarderegel is alleen gericht op één of meer Omgevingswaardes</p>
</td></tr><tr><th>Indicatie abstract object</th><td>Nee</td></tr></tbody></table>
<h6 id="overzicht-relaties-0">Overzicht relaties </h6>
<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>
Omgevingswaarderegel
[ 1 .. * ]
<a class="link" href="#detail_association_Artikelstructuur_Omgevingswaarderegel_omgevingswaardeaanduiding">omgevingswaardeaanduiding: omgevingswaardeaanduiding</a>
<a class="link" href="#global_class_Artikelstructuur_Omgevingswaarde">Omgevingswaarde</a>
[ 0 .. * ]
</td><td>
<p>Bij een regel die een omgevingswaarde vastlegt geeft deze relatie aan om welke omgevingswaarde het gaat.</p>
</td></tr><tr><td>
Omgevingswaarderegel
is specialisatie van
<a class="link" href="#global_class_Artikelstructuur_Juridischeregel">Juridische regel</a>
</td><td>
<p>De beschrijving van een regel met juridische werkingskracht.</p>
</td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_Pons"><h5 id="x5-2-2-3-pons"><bdi class="secno">5.2.2.3 </bdi> Pons</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Pons</td></tr><tr><th>Herkomst</th><td>
IMOW
</td></tr><tr><th>Definitie</th><td>
<p>Pons is het object voor het omgevingsplan waarmee het bevoegd gezag aangeeft dat een of meer delen van een bestemmingsplan dat in de overbruggingsfunctie van DSO-LV aanwezig is, niet langer geldig zijn en dat er voor zorgt dat de overbruggingsfunctie van DSO-LV dat deel niet meer toont.</p>
</td></tr><tr><th>Herkomst definitie</th><td>
Omgevingswet
</td></tr><tr><th>Datum opname</th><td>
10-9-2019
</td></tr><tr><th>Toelichting</th><td>
<p>Deze is toegevoegd om bevoegde gezagen de mogelijkheid te geven over wat niet meer getoond wordt in het DSO-LV</p>
</td></tr><tr><th>Indicatie abstract object</th><td>Nee</td></tr></tbody></table>
<h6 id="overzicht-relaties-1">Overzicht relaties </h6>
<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>
Pons
[ 1 ]
<a class="link" href="#detail_association_Artikelstructuur_Pons_locatieaanduiding">locatieaanduiding: locatieaanduiding</a>
<a class="link" href="#global_class_Locatie_Locatie">Locatie</a>
[ 1 ]
</td><td>
<p>Verwijzing naar de Locatie waar de Pons geldig is.</p>
</td></tr><tr><td>
Pons
is specialisatie van
<a class="link" href="#global_class_OWaanlevering_OWobject">OW-object</a>
</td><td>
<p>Identificeerbaar object in een OW-aanlevering</p>
</td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_Regelvooriedereen"><h5 id="x5-2-2-4-regel-voor-iedereen"><bdi class="secno">5.2.2.4 </bdi> Regel voor iedereen</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Regel voor iedereen</td></tr><tr><th>Definitie</th><td>
<p>Een Juridische regel die voor eenieder werking heeft.</p>
</td></tr><tr><th>Toelichting</th><td>
<p>Het betreft hier een algemeen geldende regel met directe werking voor eenieder. Anders gezegd, deze regels gelden voor eenieder in Nederland, inclusief voor de bevoegde gezagen zelf. </p>
</td></tr><tr><th>Indicatie abstract object</th><td>Nee</td></tr></tbody></table>
<h6 id="overzicht-attributen">Overzicht attributen </h6>
<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>
normeertEenActiviteit
:</td><td></td><td>
<a class="link" href="#detail_class_Artikelstructuur_ActiviteitLocatieaanduiding">ActiviteitLocatieaanduiding</a>
</td><td>0 .. *</td></tr><tr><td>-
<a class="link" href="#detail_attribute_Artikelstructuur_ActiviteitLocatieaanduiding_activiteitregelkwalificatie">activiteitregelkwalificatie</a>
</td><td></td><td>
<a class="link" href="#global_class_Artikelstructuur_Activiteitregelkwalificatie">Activiteitregelkwalificatie</a>
</td><td>1</td></tr><tr><td>-
<a class="link" href="#detail_attribute_Artikelstructuur_ActiviteitLocatieaanduiding_eigenSymbolisatie">eigenSymbolisatie</a>
</td><td></td><td>
<a class="external-link" href="https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/#primitive-datatypes">CharacterString</a>
</td><td>0 .. 1</td></tr><tr><td>-
<a class="link" href="#detail_association_Artikelstructuur_ActiviteitLocatieaanduiding_normeerteenactiviteit">betreft een activiteit</a>
</td><td>
<p>Bij een regel die een activiteit vastlegt geeft deze relatie aan om welke activiteit het gaat. De bijbehorende locatie(s) waar het om gaat is/zijn bij de activiteit zelf te vinden.</p>
</td><td>
<a class="link" href="#global_class_Artikelstructuur_Activiteit">Activiteit</a>
</td><td>1</td></tr><tr><td>-
<a class="link" href="#detail_association_Artikelstructuur_ActiviteitLocatieaanduiding_locatieaanduiding">locatieaanduiding</a>
</td><td></td><td>
<a class="link" href="#global_class_Locatie_Locatie">Locatie</a>
</td><td>1 .. *</td></tr></tbody></table>
<h6 id="overzicht-relaties-2">Overzicht relaties </h6>
<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>
Regel voor iedereen
[ 1 ]
<a class="link" href="#detail_association_Artikelstructuur_Regelvooriedereen_omgevingsnormaanduiding">omgevingsnormaanduiding: omgevingsnormaanduiding</a>
<a class="link" href="#global_class_Artikelstructuur_Omgevingsnorm">Omgevingsnorm</a>
[ 0 .. * ]
</td><td>
<p>Bij een regel die een omgevingsnorm vastlegt geeft deze relatie aan om welke het gaat. De bijbehorende locatie(s) waar het om gaat is/zijn bij de normwaardes van de omgevingsnorm zelf te vinden</p>
</td></tr><tr><td>
Regel voor iedereen
is specialisatie van
<a class="link" href="#global_class_Artikelstructuur_Juridischeregel">Juridische regel</a>
</td><td>
<p>De beschrijving van een regel met juridische werkingskracht.</p>
</td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_RegeltekstAnnotatie"><h5 id="x5-2-2-5-regeltekst-annotatie"><bdi class="secno">5.2.2.5 </bdi> RegeltekstAnnotatie</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>RegeltekstAnnotatie</td></tr><tr><th>Begrip</th><td>
Regeltekst is de kleinste zelfstandige eenheid van (een of meer) bij elkaar horende Juridische regels in het Lichaam van de Regeling van omgevingsdocumenten met Artikelstructuur, te weten een artikel of een lid.
</td></tr><tr><th>Herkomst</th><td>
OW
</td></tr><tr><th>Definitie</th><td>
<p>Regeltekst is de kleinste zelfstandige eenheid van (een of meer) bij elkaar horende Juridische regels in het Lichaam van de Regeling van omgevingsdocumenten met Artikelstructuur, te weten een artikel of een lid.</p>
</td></tr><tr><th>Herkomst definitie</th><td>
OW
</td></tr><tr><th>Datum opname</th><td>
2-10-2018
</td></tr><tr><th>Toelichting</th><td>
<p>In het domein Omgevingswet worden juridische regels vastgelegd door middel van juridische tekst. Dit afgebakende stuk tekst met bij elkaar behorende regels heet Regeltekst. De afbakening is bij de Omgevingswet altijd een artikel of een lid. De regeltekst bevat de <strong>inhoud</strong> van een artikel of lid. Deze inhoud is breder dan de tekst, daarom heeft een Regeltekst ook meer kenmerken dan alleen tekst. </p>
<p>In spreektaal: een groep van bij elkaar behorende regels heeft een werkingsgebied. Informatiekundig: een Regeltekst (artikel of lid) heeft een kenmerk ‘werkingsgebied’, en dit kenmerk is een verwijzing naar een (of meer) Locatie(s). De regels die in de Regeltekst zijn opgenomen hebben werkingskracht in het werkingsgebied van de regeltekst.<br clear="none">
</p>
<p>De regeltekst vindt zijn oorsprong in het OP-domein. De regeltekst in dit informatiemodel beschouwt het Artikel en het Lid uit het OP-domein, vanuit het perspectief van het OW-domein (en is in deze een «view»<sup>1</sup> op het OP-domein). Oftewel, de informatie van het Artikel of Lid uit het OP-domein, beperkt tot de kenmerken voor zover deze voor het OW-domein relevant zijn, en indien nodig aangevuld met OW-specifieke kenmerken. </p>
</td></tr><tr><th>Indicatie abstract object</th><td>Nee</td></tr></tbody></table>
<h6 id="overzicht-attributen-0">Overzicht attributen </h6>
<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_Artikelstructuur_RegeltekstAnnotatie_thema">thema</a>
</td><td>
<p>Kernachtige weergave van de grondgedachte achter een regel. Een thema kent geen locatie.</p>
</td><td>
<a class="link" href="#global_class_Artikelstructuur_Thema">Thema</a>
</td><td>0 .. *</td></tr></tbody></table>
<h6 id="overzicht-relaties-3">Overzicht relaties </h6>
<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>
RegeltekstAnnotatie
[ 0 .. * ]
<a class="link" href="#detail_association_Artikelstructuur_RegeltekstAnnotatie_werkingsgebied">werkingsgebied: werkingsgebied</a>
<a class="link" href="#global_class_Locatie_Locatie">Locatie</a>
[ 1 .. * ]
</td><td>
<p>Het werkingsgebied c.q. de locatie begrenst de juridische werking van de regeltekst, in juridische zin, te weten dat deze regeltekst alleen binnen dit werkingsgebied juridische werkingskracht heeft.</p>
</td></tr><tr><td>
RegeltekstAnnotatie
is specialisatie van
<a class="link" href="#global_class_OWaanlevering_OPobjectAnnotatie">OP-objectAnnotatie</a>
</td><td>
<p>OW-object met een directe koppeling met een Documentcomponent in STOP.</p>
</td></tr></tbody></table>
<h6 id="overzicht-constraints">Overzicht constraints </h6>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><th>Uitleg</th></tr><tr><th>
<a class="link" href="#detail_d52232e2801">
één type Juridische regel per Regeltekst
</a>
</th><td></td></tr><tr><th>
<a class="link" href="#detail_d52232e2814">
indien Artikel is onderverdeeld in Leden, annotaties alleen op Leden
</a>
</th><td></td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_Norm"><h5 id="x5-2-2-6-norm"><bdi class="secno">5.2.2.6 </bdi> Norm</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Norm</td></tr><tr><th>Definitie</th><td>
<p>Een omgevingswaarde of een omgevingsnorm, met een normatief karakter, die beschreven worden middels normwaarden. </p>
</td></tr><tr><th>Toelichting</th><td>
<p>Een norm kan bestaan uit meerdere normwaarden, die dan veelal afzonderlijk gelden voor aparte gebieden. Bijvoorbeeld: de norm maximum bouwhoogte bestaat uit twee normwaarden:</p>
<pre><code aria-busy="false" class="hljs abnf">maximum bouwhoogte <span class="hljs-number">10</span> meter geldt voor een aantal locaties<span class="hljs-comment">;</span></code></pre>
<pre><code aria-busy="false" class="hljs">maximum bouwhoogte 12 meter geldt voor een aantal andere locaties.</code></pre>
<p>Een juridische regel geeft de norm als geheel werkingskracht (niet de individuele normwaarden).</p>
<p>De Omgevingswet kent ook normstellende regels in bredere zin, welke niet als een omgevingswaarde of omgevingsnorm zijn opgenomen, maar enkel als een juridische regel met een omschrijving in tekst.</p>
</td></tr><tr><th>Indicatie abstract object</th><td>Ja</td></tr></tbody></table>
<h6 id="overzicht-attributen-1">Overzicht attributen </h6>
<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_Artikelstructuur_Norm_naam">naam</a>
</td><td></td><td>
<a class="external-link" href="https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/#primitive-datatypes">CharacterString</a>
</td><td>1</td></tr><tr><td>
<a class="link" href="#detail_attribute_Artikelstructuur_Norm_eenheid">eenheid</a>
</td><td>
<p>De eenheid van de waarde, voluit geschreven</p>
</td><td>
<a class="link" href="#global_class_Artikelstructuur_Eenheid">Eenheid</a>
</td><td>0 .. 1</td></tr><tr><td>
<a class="link" href="#detail_attribute_Artikelstructuur_Norm_type">type</a>
</td><td>
<p>Het type van de norm.</p>
</td><td>
<a class="link" href="#global_class_Artikelstructuur_Typenorm">Typenorm</a>
</td><td>1</td></tr><tr><td>
normwaarde
:</td><td>
<p>Één van de kwantitatieve of kwalitatieve waarden van een norm.</p>
</td><td>
<a class="link" href="#detail_class_Artikelstructuur_Normwaarde">Normwaarde</a>
</td><td>1 .. *</td></tr><tr><td>-
<a class="link" href="#detail_attribute_Artikelstructuur_Normwaarde_eigenSymbolisatie">eigenSymbolisatie</a>
</td><td></td><td>
<a class="external-link" href="https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/#primitive-datatypes">CharacterString</a>
</td><td>0 .. 1</td></tr><tr><td>-
<a class="link" href="#detail_association_Artikelstructuur_Normwaarde_locatieaanduiding">locatieaanduiding</a>
</td><td></td><td>
<a class="link" href="#global_class_Locatie_Locatie">Locatie</a>
</td><td>1 .. *</td></tr></tbody></table>
<h6 id="overzicht-relaties-4">Overzicht relaties </h6>
<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>
Norm
is specialisatie van
<a class="link" href="#global_class_OWaanlevering_OWobject">OW-object</a>
</td><td>
<p>Identificeerbaar object in een OW-aanlevering</p>
</td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_Juridischeregel"><h5 id="x5-2-2-7-juridische-regel"><bdi class="secno">5.2.2.7 </bdi> Juridische regel</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Juridische regel</td></tr><tr><th>Begrip</th><td>
De beschrijving van een regel met juridische werkingskracht.
</td></tr><tr><th>Herkomst</th><td>
OW
</td></tr><tr><th>Definitie</th><td>
<p>De beschrijving van een regel met juridische werkingskracht.</p>
</td></tr><tr><th>Herkomst definitie</th><td>
OW
</td></tr><tr><th>Datum opname</th><td>
2-10-2018
</td></tr><tr><th>Populatie</th><td>
Alle juridische regels in het domein van de Omgevingswet.
</td></tr><tr><th>Toelichting</th><td>
<p>Met een juridische regel wordt niet (alleen) de tekst van de regel bedoeld, maar regel als geheel. Deze bestaat o.a. uit tekst, wat hét centrale deel is van een juridische regel, maar de juridische regel heeft ook andere kenmerken, zoals bijvoorbeeld een idealisatie en een locatieaanduiding. Deze worden beschreven in het volgende hoofdstuk.</p>
<p>Regels gelden voor een bepaalde specifieke locatie(s) in de fysieke leefomgeving, of voor een heel grondgebied een bevoegd gezag. De regels verwijzen naar deze locaties, deze verwijzing heet: <strong>locatieaanduiding</strong>. De locatie van een juridische regel kan afwijken van de activiteit, norm of gebiedsaanwijzing die gedaan wordt. In dat geval wordt daarmee gezegd: deze regel geldt voor deze locatie, en heeft nog een informatieobject dat een andere locatie heeft. Bijvoorbeeld: “In de buitenzone van het stiltegebied geldt de norm conform de GIO ‘buitenzone’ en in de binnenzone geldt de norm conform de GIO ‘binnenzone’.” In dit geval zijn er twee normen die gesteld worden met andere locaties (buitenzone en binnenzone) dan de juridische regel (stiltegebied). Tevens kan een bevoegd gezag er voor kiezen om de juridische regel voor het gehele grondgebied geldig te laten zijn. De locatieaanduiding van een juridische regel bepaalt waar een regel werking heeft (werkingsgebied) en wanneer een regel relevant is (c.q. een raadpleger een bepaalde regel te zien krijgt in het DSO-LV).</p>
<p>Ad. veelal. Er zijn ook regels <em>zonder</em> een relatie naar een informatiekundige activiteit, norm, of gebiedsaanwijzing. Dit is bijvoorbeeld zo bij begripsbepalingen, maar kan ook voorkomen bij normstellende regels.</p>
<ul>
<li>* Een begripsbepaling geeft aan wat er onder een bepaald begrip of term wordt verstaan. Zo’n begripsbepaling staat op zichzelf, maar wordt wel gezien als een juridische regel. Deze beschrijft echter niet een activiteit, en/of norm en/of functie en en/of beperkingengebied en heeft hier dan ook geen relatie naar toe.</li>
<li>Een normstellende regel kan het in de juridische tekst wel over bijvoorbeeld een activiteit hebben, maar het daarbij laten door de activiteit informatiekundig niet (expliciet) aan te geven. Er is dan geen informatiekundig activiteit gecreëerd en daar kan dan natuurlijk ook niet naar verwezen worden via een relatie. Informatiekundig is er dan alleen sprake van een juridische regel. Een voorbeeld van zo’n normstellende regel zonder een expliciete verwijzing naar informatiekundige activiteit is: “Er geldt een algemeen rookverbod in de openbare ruimtes binnen het centrumgebied van Groningen”.</li>
</ul>
<p>Een juridische regel wordt altijd opgesteld in de context van andere juridische regels. Deze context is altijd van belang bij het juridisch interpreteren van de regel(s). Lees daarom altijd ook het artikel.</p>
</td></tr><tr><th>Indicatie abstract object</th><td>Ja</td></tr></tbody></table>
<h6 id="overzicht-attributen-2">Overzicht attributen </h6>
<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_Artikelstructuur_Juridischeregel_idealisatie">idealisatie</a>
</td><td>
<p>Vastlegging van de manier de begrenzing van Locatie voor deze Juridische regel geïnterpreteerd moet worden en door het bevoegd gezag bedoeld is.</p>
</td><td>
<a class="link" href="#global_class_Artikelstructuur_Idealisatie">Idealisatie</a>
</td><td>1</td></tr><tr><td>
<a class="link" href="#detail_attribute_Artikelstructuur_Juridischeregel_thema">thema</a>
</td><td>
<p>Kernachtige weergave van de grondgedachte achter een regel. Een thema kent geen locatie.</p>
</td><td>
<a class="link" href="#global_class_Artikelstructuur_Thema">Thema</a>
</td><td>0 .. *</td></tr></tbody></table>
<h6 id="overzicht-relaties-5">Overzicht relaties </h6>
<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>
Juridische regel
[ 0 .. * ]
<a class="link" href="#detail_association_Artikelstructuur_Juridischeregel_locatieaanduiding">locatieaanduiding: locatieaanduiding</a>
<a class="link" href="#global_class_Locatie_Locatie">Locatie</a>
[ 1 .. * ]
</td><td>
<p>Een Juridische regel definieert een locatie, die bestaansrecht heeft doordat de regel ernaar verwijst. De locatie begrenst de werking van de regel in juridische zin, te weten dat deze regel alleen voor deze locatie werkingskracht heeft.</p>
</td></tr><tr><td>
Juridische regel
[ 1 ]
<a class="link" href="#detail_association_Artikelstructuur_Juridischeregel_kaartaanduiding">kaartaanduiding: kaartaanduiding</a>
<a class="link" href="#global_class_Kaart_Kaart">Kaart</a>
[ 0 .. * ]
</td><td></td></tr><tr><td>
Juridische regel
[ 0 .. * ]
<a class="link" href="#detail_association_Artikelstructuur_Juridischeregel_gebiedsaanwijzing">gebiedsaanwijzing: gebiedsaanwijzing</a>
<a class="link" href="#global_class_OWaanlevering_Gebiedsaanwijzing">Gebiedsaanwijzing</a>
[ 0 .. * ]
</td><td>
<p>Bij een regel die een gebiedsaanwijzing vastlegt geeft deze relatie aan om welk gebied en type gebied het gaat. De bijbehorende locatie(s) waar het om gaat is/zijn bij de gebiedsaanwijzing zelf te vinden.</p>
</td></tr><tr><td>
Juridische regel
[ 1 .. * ]
<a class="link" href="#detail_association_Artikelstructuur_Juridischeregel_artikelOfLid">artikelOfLid: artikelOfLid</a>
<a class="link" href="#global_class_Artikelstructuur_RegeltekstAnnotatie">RegeltekstAnnotatie</a>
[ 1 ]
</td><td>
<p>De regeltekst waarin de juridische regel te vinden is en waarin de tekstuele omschrijving van de regel te lezen is. </p>
</td></tr><tr><td>
Juridische regel
is specialisatie van
<a class="link" href="#global_class_OWaanlevering_OWobject">OW-object</a>
</td><td>
<p>Identificeerbaar object in een OW-aanlevering</p>
</td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_Omgevingsnorm"><h5 id="x5-2-2-8-omgevingsnorm"><bdi class="secno">5.2.2.8 </bdi> Omgevingsnorm</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Omgevingsnorm</td></tr><tr><th>Definitie</th><td>
<p>Een norm over de fysieke leefomgeving die in een kwantitatieve of kwalitatieve waarde wordt uitgedrukt en geen omgevingswaarde is.</p>
</td></tr><tr><th>Toelichting</th><td>
<p>Bijvoorbeeld: maximum bouwhoogte, maximum aantal parkeerplaatsen, maximum geluidbelasting, maximum aantal bezoekers. Alle omgevingsnormen hebben als herkomst omgevingsdocumenten.</p>
<p>De Omgevingsnorm is niet de regel zelf. De regel beschrijft wat er juridisch geldt voor dit object. De juridische tekst waarin dit object genoemd is, is te vinden in de juridische regel, en niet in dit object.</p>
</td></tr><tr><th>Indicatie abstract object</th><td>Nee</td></tr></tbody></table>
<h6 id="overzicht-attributen-3">Overzicht attributen </h6>
<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_Artikelstructuur_Omgevingsnorm_groep">groep</a>
</td><td>
<p>Een categorie, of groep, waaronder een omgevingsnorm valt.</p>
</td><td>
<a class="link" href="#global_class_Artikelstructuur_Omgevingsnormgroep">Omgevingsnormgroep</a>
</td><td>1</td></tr></tbody></table>
<h6 id="overzicht-relaties-6">Overzicht relaties </h6>
<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>
Omgevingsnorm
is specialisatie van
<a class="link" href="#global_class_Artikelstructuur_Norm">Norm</a>
</td><td>
<p>Een omgevingswaarde of een omgevingsnorm, met een normatief karakter, die beschreven worden middels normwaarden. </p>
</td></tr></tbody></table>
</section>
<section id="global_class_Artikelstructuur_Omgevingswaarde"><h5 id="x5-2-2-9-omgevingswaarde"><bdi class="secno">5.2.2.9 </bdi> Omgevingswaarde</h5>
<table style="width: 100%;"><colgroup style="width: 30%;"></colgroup><colgroup style="width: 70%;"></colgroup><tbody><tr><th>Naam</th><td>Omgevingswaarde</td></tr><tr><th>Definitie</th><td>
<p>Een norm die voor (een onderdeel van) de fysieke leefomgeving de gewenste staat of kwaliteit, de toelaatbare belasting door activiteiten en/of de toelaatbare concentratie of depositie van stoffen als beleidsdoel vastlegt.</p>
</td></tr><tr><th>Toelichting</th><td>
<p>Bijvoorbeeld: streefwaarden of maximaal toelaatbare waarden voor luchtkwaliteit, kwaliteit van oppervlaktewater, grondwater of zwemwater. Alle omgevingswaarden hebben als herkomst omgevingsdocumenten.</p>
<p>Omgevingswaarden worden uitgedrukt in meetbare of berekenbare eenheden of anderszins in objectieve termen. Een omgevingswaarde is bindend voor de overheid die de omgevingswaarde heeft vastgesteld en heeft geen rechtstreekse werking voor anderen. Omgevingswaarden zijn een concretisering van de maatschappelijke doelen die met de Omgevingswet worden nagestreefd. Zij hebben betrekking op de hoedanigheid en eigenschappen van de fysieke leefomgeving (de staat, kwaliteit of inrichting van de omgeving). Omgevingswaarden dienen als referentiekader bij de inzet van instrumenten en bevoegdheden van de overheid.</p>
<p>De Omgevingswaarde is niet de regel zelf. De regel beschrijft wat er juridisch geldt voor dit object. De juridische tekst waarin dit object genoemd is, is te vinden in de juridische regel, en niet in dit object.</p>
</td></tr><tr><th>Indicatie abstract object</th><td>Nee</td></tr></tbody></table>
<h6 id="overzicht-attributen-4">Overzicht attributen </h6>
<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>