-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapshot.html
5741 lines (5008 loc) · 284 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 Toepasbare Regels</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 Toepasbare Regels'. Dit is een conceptueel model van het
DSO.">
<style>
.sidelabel {
position: fixed;
-webkit-transform-origin: top right;
right: 100%;
top: 0;
-webkit-transform: rotate(-90deg);
padding: 4px 50px 4px 10px;
color: white;
white-space: nowrap;
z-index: 1;
background-color: #FF0000;
}
</style>
<script type="text/javascript">
/* Any custom mermaid.js scripts will go here. */
</script>
<style>
/* Any custom mermaid.js scripts will go here. */
}
</style>
<script id="initialUserConfig" type="application/json">{
"nl_organisationName": "Geonovum",
"nl_organisationPublishURL": "https://docs.geostandaarden.nl/",
"logos": [
{
"src": "https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg",
"alt": "Geonovum",
"id": "Geonovum",
"height": 67,
"width": 132,
"url": "https://www.geonovum.nl/geo-standaarden"
}
],
"postProcess": [
null
],
"latestVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"shortName",
"/"
],
"thisVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"specStatus",
"-",
"specType",
"-",
"shortName",
"-",
"publishDate"
],
"prevVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"previousMaturity",
"-",
"specType",
"-",
"shortName",
"-",
"previousPublishDate"
],
"useLogo": true,
"useLabel": true,
"license": "cc-by",
"addSectionLinks": true,
"localizationStrings": {
"en": {
"wv": "Editor's draft",
"cv": "Candidate recommendation",
"vv": "Proposed recommendation",
"def": "Recommendation",
"ld": "Living document",
"basis": "Document",
"no": "Norm",
"st": "Standard",
"im": "Information model",
"pr": "Practical guideline",
"hr": "Guide",
"wa": "Work process agreement",
"al": "General",
"bd": "Governance documentation",
"bp": "Best practice"
},
"nl": {
"wv": "Werkversie",
"cv": "Consultatieversie",
"vv": "Versie ter vaststelling",
"def": "Vastgestelde versie",
"ld": "Levend document",
"basis": "Document",
"no": "Norm",
"st": "Standaard",
"im": "Informatiemodel",
"pr": "Praktijkrichtlijn",
"hr": "Handreiking",
"wa": "Werkafspraak",
"al": "Algemeen",
"bd": "Beheerdocumentatie",
"bp": "Best practice"
}
},
"sotdText": {
"nl": {
"sotd": "Status van dit document",
"def": "Dit is de definitieve versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"wv": "Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen stabiel document.",
"cv": "Dit is een consultatieversie. Commentaar over dit document kan gestuurd worden naar ",
"vv": "Dit is de definitieve conceptversie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"basis": "Dit is een document zonder officiële status.",
"ld": "Dit is een levend document dat regelmatig gewijzigd wordt."
},
"en": {
"sotd": "Status of this document",
"def": "This is the definitive version of this document. Edits resulting from consultations have been applied.",
"wv": "This is a working draft that can be changed, removed or replaced by other documents at any time. It is not a stable document.",
"cv": "This is a stable draft, published for public comment. Comments regarding this document may be sent to ",
"vv": "This is the final draft of this document. Edits resulting from consultations have been applied.",
"basis": "This document has no official standing.",
"ld": "This is a living document, which is updated regularly."
}
},
"labelColor": {
"def": "#045D9F",
"wv": "#FF0000",
"cv": "#045D9F",
"vv": "#045D9F",
"basis": "#80CC28",
"ld": "#80CC28"
},
"licenses": {
"cc0": {
"name": "Creative Commons 0 Public Domain Dedication",
"short": "CC0",
"url": "https://creativecommons.org/publicdomain/zero/1.0/",
"image": "https://tools.geostandaarden.nl/respec/style/logos/CC-Licentie.svg"
},
"cc-by": {
"name": "Creative Commons Attribution 4.0 International Public License",
"short": "CC-BY",
"url": "https://creativecommons.org/licenses/by/4.0/legalcode",
"image": "https://tools.geostandaarden.nl/respec/style/logos/cc-by.svg"
},
"cc-by-nd": {
"name": "Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal",
"short": "CC-BY-ND",
"url": "https://creativecommons.org/licenses/by-nd/4.0/legalcode.nl",
"image": "https://tools.geostandaarden.nl/respec/style/logos/cc-by-nd.svg"
}
},
"localBiblio": {
"Basisgeometrie": {
"id": "Basisgeometrie",
"title": "Basisgeometrie",
"href": "https://docs.geostandaarden.nl/nen3610/def-st-basisgeometrie-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"
}
},
"title": "Conceptueel Informatiemodel Toepasbare Regels",
"specStatus": "wv",
"specType": "IM",
"nl_organisationStylesURL": "https://tools.geostandaarden.nl/respec/style/",
"pubDomain": "dso",
"licence": "cc-by",
"shortName": "dso-cim-tr",
"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-tr",
"alternateFormats": [
{
"label": "pdf",
"uri": "dso-cim-tr.pdf"
}
]
}</script>
<link rel="stylesheet" href="https://tools.geostandaarden.nl/respec/style/base.css"></head>
<body class="h-entry toc-inline"><div class="head">
<a class="logo" href="https://www.geonovum.nl/geo-standaarden"><img alt="Geonovum" height="67" id="Geonovum" src="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg" width="132">
</a> <h1 id="title" class="title">Conceptueel Informatiemodel Toepasbare Regels</h1>
<h2>
Geonovum Informatiemodel<br>
Werkversie
<time class="dt-published" datetime="2024-09-06">06 september 2024</time>
</h2>
<dl>
<dt>Laatste werkversie:</dt><dd><a href="https://geonovum.github.io/dso-cim-tr/">https://geonovum.github.io/dso-cim-tr/</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-tr/">GitHub Geonovum/dso-cim-tr</a>
</dd><dd>
<a href="https://github.com/Geonovum/dso-cim-tr/issues/">Dien een melding in</a>
</dd><dd>
<a href="https://github.com/Geonovum/dso-cim-tr/commits/">Revisiehistorie</a>
</dd><dd>
<a href="https://github.com/Geonovum/dso-cim-tr/pulls/">Pull requests</a>
</dd>
</dl>
<p>
Dit document is ook beschikbaar in dit niet-normatieve formaat:
<a rel="alternate" href="dso-cim-tr.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/respec/style/logos/cc-by.svg" alt="Logo Creative Commons Attribution 4.0 International Public License"><br> Creative Commons Attribution 4.0 International Public License</a>
</p>
<hr title="Separator for header">
</div>
<section id="abstract" class="introductory"><h2>Samenvatting</h2><p>Dit document beschrijft het 'Conceptueel Informatiemodel Toepasbare Regels'. 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 stabiel document.</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></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="#normatieve-referenties-0"><bdi class="secno">4.1 </bdi>Normatieve referenties</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="#EAID_19315070_841D_4f05_9549_81B3E1272F55"><bdi class="secno">5.1 </bdi> CIM-TR Context - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_1F739A5B_7883_42b4_A9BE_366B26F97215"><bdi class="secno">5.2 </bdi> CIM-TR Kern - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_F28E4916_8CBE_4e73_887D_00C55E1C3F39"><bdi class="secno">5.3 </bdi> CIM-TR Uitkomsten - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_D0A77EDC_E94F_49e7_86BA_56802CF69E17"><bdi class="secno">5.4 </bdi> CIM-TR Uitvoeringsregels - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_A7781548_EEB5_4d67_BA05_557FA0C632D2"><bdi class="secno">5.5 </bdi> CIM-TR Functionele Structuur - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_9B4AABF3_FDE7_4b65_A090_7C7E62143630"><bdi class="secno">5.6 </bdi> CIM-TR Toepasbare Activiteit - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_DEC8674B_FA40_4fc9_ADB0_C04E82493850"><bdi class="secno">5.7 </bdi> CIM-TR Behandeldienstconfiguratie - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_F12EF44C_9B98_45d6_A386_275452AF216F"><bdi class="secno">5.8 </bdi> CIM-TR Opstellen aanvraag - overzicht</a></li><li class="tocline"><a class="tocxref" href="#EAID_34AFE070_F54D_4b48_BD9F_FC374B592CE5"><bdi class="secno">5.9 </bdi> CIM-TR Datatypen en waardelijsten - overzicht</a></li><li class="tocline"><a class="tocxref" href="#objecttypen"><bdi class="secno">5.10 </bdi>Objecttypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Geoverwijzing"><bdi class="secno">5.10.1 </bdi> Geoverwijzing</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Conclusie"><bdi class="secno">5.10.2 </bdi> Conclusie</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_RegisterbevragingAPIProfiel"><bdi class="secno">5.10.3 </bdi> Registerbevraging API-profiel</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_ToepasbareRegel"><bdi class="secno">5.10.4 </bdi> Toepasbare regel</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_ToepasbareActiviteit"><bdi class="secno">5.10.5 </bdi> Toepasbare activiteit</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Conversieregel"><bdi class="secno">5.10.6 </bdi> Conversieregel</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Feit"><bdi class="secno">5.10.7 </bdi> Feit</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Uitvoeringsregel"><bdi class="secno">5.10.8 </bdi> Uitvoeringsregel</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_UitkomstHerbruikbareBeslissing"><bdi class="secno">5.10.9 </bdi> Uitkomst herbruikbare beslissing</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Bedrijfsregel"><bdi class="secno">5.10.10 </bdi> Bedrijfsregel</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_ImplicietAntwoord"><bdi class="secno">5.10.11 </bdi> Impliciet antwoord</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Bijlagedefinitie"><bdi class="secno">5.10.12 </bdi> Bijlagedefinitie</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Indieningsvereiste"><bdi class="secno">5.10.13 </bdi> Indieningsvereiste</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Invoergegeven"><bdi class="secno">5.10.14 </bdi> Invoergegeven</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_RegisterbevragingGGS"><bdi class="secno">5.10.15 </bdi> Registerbevraging GGS</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Vraagdefinitie"><bdi class="secno">5.10.16 </bdi> Vraagdefinitie</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_MaatregelenOpMaat"><bdi class="secno">5.10.17 </bdi> Maatregelen op maat</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Interactieregel"><bdi class="secno">5.10.18 </bdi> Interactieregel</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Aansluitpunt"><bdi class="secno">5.10.19 </bdi> Aansluitpunt</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Werkzaamheid"><bdi class="secno">5.10.20 </bdi> Werkzaamheid</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Registerbevraging"><bdi class="secno">5.10.21 </bdi> Registerbevraging</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Indieningsvereisten"><bdi class="secno">5.10.22 </bdi> Indieningsvereisten</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Indienbaar"><bdi class="secno">5.10.23 </bdi> Indienbaar</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_ToepasbareRegelset"><bdi class="secno">5.10.24 </bdi> Toepasbare Regelset</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Uitkomst"><bdi class="secno">5.10.25 </bdi> Uitkomst</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_VasteWaarde"><bdi class="secno">5.10.26 </bdi> Vaste waarde</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Grondslag"><bdi class="secno">5.10.27 </bdi> Grondslag</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Regelbeheerobject"><bdi class="secno">5.10.28 </bdi> Regelbeheerobject</a></li></ol></li><li class="tocline"><a class="tocxref" href="#referentielijsten"><bdi class="secno">5.11 </bdi>Referentielijsten </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_ToestemmingTypering"><bdi class="secno">5.11.1 </bdi>Referentielijst ToestemmingTypering</a></li></ol></li><li class="tocline"><a class="tocxref" href="#primitieve-datatypen"><bdi class="secno">5.12 </bdi>Primitieve datatypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Afnamepunt"><bdi class="secno">5.12.1 </bdi>Primitief datatype Afnamepunt</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Maatregel"><bdi class="secno">5.12.2 </bdi>Primitief datatype Maatregel</a></li><li class="tocline"><a class="tocxref" href="#global_class_CIMTR_Identificatie"><bdi class="secno">5.12.3 </bdi>Primitief datatype Identificatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#enumeraties"><bdi class="secno">5.13 </bdi>Enumeraties </a></li><li class="tocline"><a class="tocxref" href="#attribuut-en-relatiesoort-details"><bdi class="secno">5.14 </bdi>Attribuut- en relatiesoort details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-details"><bdi class="secno">5.14.1 </bdi>Objecttype details </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Geoverwijzing"><bdi class="secno">5.14.1.1 </bdi> Geoverwijzing</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Geoverwijzing_locatie"><bdi class="secno">5.14.1.1.1 </bdi>Attribuutsoort details <span class="formerLink">Geoverwijzing</span> locatie</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Conclusie"><bdi class="secno">5.14.1.2 </bdi> Conclusie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Conclusie_toestemmingen"><bdi class="secno">5.14.1.2.1 </bdi>Attribuutsoort details <span class="formerLink">Conclusie</span> toestemmingen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_RegisterbevragingAPIProfiel"><bdi class="secno">5.14.1.3 </bdi> Registerbevraging API-profiel</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_RegisterbevragingAPIProfiel_afnamepunt"><bdi class="secno">5.14.1.3.1 </bdi>Attribuutsoort details <span class="formerLink">Registerbevraging API-profiel</span> afnamepunt</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_ToepasbareActiviteit"><bdi class="secno">5.14.1.4 </bdi> Toepasbare activiteit</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_ToepasbareActiviteit_typering"><bdi class="secno">5.14.1.4.1 </bdi>Attribuutsoort details <span class="formerLink">Toepasbare activiteit</span> typering</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_ToepasbareActiviteit_verfijnbaar"><bdi class="secno">5.14.1.4.2 </bdi>Attribuutsoort details <span class="formerLink">Toepasbare activiteit</span> verfijnbaar</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_ToepasbareActiviteit_magneet"><bdi class="secno">5.14.1.4.3 </bdi>Attribuutsoort details <span class="formerLink">Toepasbare activiteit</span> magneet</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_ToepasbareActiviteit_toonbaar"><bdi class="secno">5.14.1.4.4 </bdi>Attribuutsoort details <span class="formerLink">Toepasbare activiteit</span> toonbaar</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareActiviteit_isEen"><bdi class="secno">5.14.1.4.5 </bdi>Externe koppeling details <span class="formerLink">Toepasbare activiteit</span> is (een)</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareActiviteit_valtImplicietBinnen"><bdi class="secno">5.14.1.4.6 </bdi>Externe koppeling details <span class="formerLink">Toepasbare activiteit</span> valt impliciet binnen</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareActiviteit_isVan"><bdi class="secno">5.14.1.4.7 </bdi>Relatiesoort details <span class="formerLink">Toepasbare activiteit</span> is van</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareActiviteit_krijgtDoelMiddels"><bdi class="secno">5.14.1.4.8 </bdi>Relatiesoort details <span class="formerLink">Toepasbare activiteit</span> krijgt doel middels</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareActiviteit_heeft"><bdi class="secno">5.14.1.4.9 </bdi>Relatiesoort details <span class="formerLink">Toepasbare activiteit</span> heeft</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareActiviteit_heeftRechtTot"><bdi class="secno">5.14.1.4.10 </bdi>Relatiesoort details <span class="formerLink">Toepasbare activiteit</span> heeft recht tot</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Feit"><bdi class="secno">5.14.1.5 </bdi> Feit</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Feit_vereist"><bdi class="secno">5.14.1.5.1 </bdi>Relatiesoort details <span class="formerLink">Feit</span> vereist</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_UitkomstHerbruikbareBeslissing"><bdi class="secno">5.14.1.6 </bdi> Uitkomst herbruikbare beslissing</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_UitkomstHerbruikbareBeslissing_naam"><bdi class="secno">5.14.1.6.1 </bdi>Attribuutsoort details <span class="formerLink">Uitkomst herbruikbare beslissing</span> naam</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_UitkomstHerbruikbareBeslissing_urnToepasbaresActiviteit"><bdi class="secno">5.14.1.6.2 </bdi>Attribuutsoort details <span class="formerLink">Uitkomst herbruikbare beslissing</span> urn (toepasbares activiteit)</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Bedrijfsregel"><bdi class="secno">5.14.1.7 </bdi> Bedrijfsregel</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Bedrijfsregel_beslistOpBasisVan"><bdi class="secno">5.14.1.7.1 </bdi>Relatiesoort details <span class="formerLink">Bedrijfsregel</span> beslist op basis van</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_ImplicietAntwoord"><bdi class="secno">5.14.1.8 </bdi> Impliciet antwoord</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_ImplicietAntwoord_waarde"><bdi class="secno">5.14.1.8.1 </bdi>Attribuutsoort details <span class="formerLink">Impliciet antwoord</span> waarde</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_ImplicietAntwoord_werkzaamheidReferentie"><bdi class="secno">5.14.1.8.2 </bdi>Attribuutsoort details <span class="formerLink">Impliciet antwoord</span> werkzaamheid (referentie)</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_ImplicietAntwoord_context"><bdi class="secno">5.14.1.8.3 </bdi>Attribuutsoort details <span class="formerLink">Impliciet antwoord</span> context</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Bijlagedefinitie"><bdi class="secno">5.14.1.9 </bdi> Bijlagedefinitie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Bijlagedefinitie_bijlageType"><bdi class="secno">5.14.1.9.1 </bdi>Attribuutsoort details <span class="formerLink">Bijlagedefinitie</span> bijlageType</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Bijlagedefinitie_documenttype"><bdi class="secno">5.14.1.9.2 </bdi>Attribuutsoort details <span class="formerLink">Bijlagedefinitie</span> documenttype</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Invoergegeven"><bdi class="secno">5.14.1.10 </bdi> Invoergegeven</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Invoergegeven_komtVoortUit"><bdi class="secno">5.14.1.10.1 </bdi>Relatiesoort details <span class="formerLink">Invoergegeven</span> komt voort uit</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_RegisterbevragingGGS"><bdi class="secno">5.14.1.11 </bdi> Registerbevraging GGS</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_RegisterbevragingGGS_gegevensType"><bdi class="secno">5.14.1.11.1 </bdi>Attribuutsoort details <span class="formerLink">Registerbevraging GGS</span> gegevensType</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_RegisterbevragingGGS_register"><bdi class="secno">5.14.1.11.2 </bdi>Attribuutsoort details <span class="formerLink">Registerbevraging GGS</span> register</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_RegisterbevragingGGS_registergegeven"><bdi class="secno">5.14.1.11.3 </bdi>Attribuutsoort details <span class="formerLink">Registerbevraging GGS</span> registergegeven</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_RegisterbevragingGGS_registerkoppelveld"><bdi class="secno">5.14.1.11.4 </bdi>Attribuutsoort details <span class="formerLink">Registerbevraging GGS</span> registerkoppelveld</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_MaatregelenOpMaat"><bdi class="secno">5.14.1.12 </bdi> Maatregelen op maat</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_MaatregelenOpMaat_maatregelen"><bdi class="secno">5.14.1.12.1 </bdi>Attribuutsoort details <span class="formerLink">Maatregelen op maat</span> maatregelen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Werkzaamheid"><bdi class="secno">5.14.1.13 </bdi> Werkzaamheid</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Werkzaamheid_trefwoorden"><bdi class="secno">5.14.1.13.1 </bdi>Attribuutsoort details <span class="formerLink">Werkzaamheid</span> trefwoorden</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Werkzaamheid_leidtTot"><bdi class="secno">5.14.1.13.2 </bdi>Relatiesoort details <span class="formerLink">Werkzaamheid</span> leidt tot</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Werkzaamheid_logischGerelateerd"><bdi class="secno">5.14.1.13.3 </bdi>Relatiesoort details <span class="formerLink">Werkzaamheid</span> logisch gerelateerd</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Registerbevraging"><bdi class="secno">5.14.1.14 </bdi> Registerbevraging</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Registerbevraging_verborgenstruurvraag"><bdi class="secno">5.14.1.14.1 </bdi>Attribuutsoort details <span class="formerLink">Registerbevraging</span> verborgenstruurvraag</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Indieningsvereisten"><bdi class="secno">5.14.1.15 </bdi> Indieningsvereisten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Indieningsvereisten_hoortBij"><bdi class="secno">5.14.1.15.1 </bdi>Relatiesoort details <span class="formerLink">Indieningsvereisten</span> hoort bij</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Indienbaar"><bdi class="secno">5.14.1.16 </bdi> Indienbaar</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Indienbaar_compleetEnIndienbaar"><bdi class="secno">5.14.1.16.1 </bdi>Attribuutsoort details <span class="formerLink">Indienbaar</span> compleetEnIndienbaar</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Indienbaar_wordtBepaaldDoor"><bdi class="secno">5.14.1.16.2 </bdi>Relatiesoort details <span class="formerLink">Indienbaar</span> wordt bepaald door</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_ToepasbareRegelset"><bdi class="secno">5.14.1.17 </bdi> Toepasbare Regelset</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareRegelset_leidtTot"><bdi class="secno">5.14.1.17.1 </bdi>Relatiesoort details <span class="formerLink">Toepasbare Regelset</span> leidt tot</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareRegelset_levert"><bdi class="secno">5.14.1.17.2 </bdi>Relatiesoort details <span class="formerLink">Toepasbare Regelset</span> levert</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_ToepasbareRegelset_groepeert"><bdi class="secno">5.14.1.17.3 </bdi>Relatiesoort details <span class="formerLink">Toepasbare Regelset</span> groepeert</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_VasteWaarde"><bdi class="secno">5.14.1.18 </bdi> Vaste waarde</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_VasteWaarde_gegevenstype"><bdi class="secno">5.14.1.18.1 </bdi>Attribuutsoort details <span class="formerLink">Vaste waarde</span> gegevenstype</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_VasteWaarde_waarde"><bdi class="secno">5.14.1.18.2 </bdi>Attribuutsoort details <span class="formerLink">Vaste waarde</span> waarde</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_VasteWaarde_voorbehoud"><bdi class="secno">5.14.1.18.3 </bdi>Attribuutsoort details <span class="formerLink">Vaste waarde</span> voorbehoud</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Grondslag"><bdi class="secno">5.14.1.19 </bdi> Grondslag</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Grondslag_gebruiktEen"><bdi class="secno">5.14.1.19.1 </bdi>Relatiesoort details <span class="formerLink">Grondslag</span> gebruikt een</a></li></ol></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Regelbeheerobject"><bdi class="secno">5.14.1.20 </bdi> Regelbeheerobject</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Regelbeheerobject_type"><bdi class="secno">5.14.1.20.1 </bdi>Attribuutsoort details <span class="formerLink">Regelbeheerobject</span> type</a></li><li class="tocline"><a class="tocxref" href="#detail_attribute_CIMTR_Regelbeheerobject_href"><bdi class="secno">5.14.1.20.2 </bdi>Attribuutsoort details <span class="formerLink">Regelbeheerobject</span> href</a></li><li class="tocline"><a class="tocxref" href="#detail_association_CIMTR_Regelbeheerobject_ontsluit"><bdi class="secno">5.14.1.20.3 </bdi>Relatiesoort details <span class="formerLink">Regelbeheerobject</span> ontsluit</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 waardenlijsten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_ToestemmingTypering"><bdi class="secno">6.1 </bdi>Referentielijst ToestemmingTypering</a></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_DocumentTypeGeneriek"><bdi class="secno">6.2 </bdi>Enumeratie details DocumentTypeGeneriek</a></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Typering"><bdi class="secno">6.3 </bdi>Enumeratie details Typering</a></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Uitkomsttype"><bdi class="secno">6.4 </bdi>Enumeratie details Uitkomsttype</a></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Bestuurslaag"><bdi class="secno">6.5 </bdi>Enumeratie details Bestuurslaag</a></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Gegevenstype"><bdi class="secno">6.6 </bdi>Enumeratie details Gegevenstype</a></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Register"><bdi class="secno">6.7 </bdi>Enumeratie details Register</a></li><li class="tocline"><a class="tocxref" href="#detail_class_CIMTR_Context"><bdi class="secno">6.8 </bdi>Enumeratie details Context</a></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"><div class="header-wrapper"><h2 id="x1-voorwoord"><bdi class="secno">1. </bdi>Voorwoord</h2><a class="self-link" href="#voorwoord" aria-label="Permalink for Section 1."></a></div>
<p>Dit document is tot stand gekomen binnen het programma DSO-Omgegevingswet. Het bevat de formele vastlegging en beschrijving van het Conceptuele Informatiemodel.</p>
<p>Dit conceptuele informatiemodel volgt de regels voor opstellen van een informatiemodel zoals vastgelegd in de MIM standaard en wordt uitgedrukt in UML.</p>
</section>
<section id="inleiding"><div class="header-wrapper"><h2 id="x2-inleiding"><bdi class="secno">2. </bdi>Inleiding</h2><a class="self-link" href="#inleiding" aria-label="Permalink for Section 2."></a></div>
<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>
<p>Dit document bevat de vastlegging en beschrijving van het Conceptueel Informatiemodel Toepasbare Regels.</p>
</section>
<section id="toepassingsgebied"><div class="header-wrapper"><h2 id="x3-toepassingsgebied"><bdi class="secno">3. </bdi>Toepassingsgebied</h2><a class="self-link" href="#toepassingsgebied" aria-label="Permalink for Section 3."></a></div>
<p>Het toepassingsdomein van deze standaard is het DSO van de omgevingswet.</p>
</section>
<section id="overzicht"><div class="header-wrapper"><h2 id="x4-overzicht"><bdi class="secno">4. </bdi>Overzicht</h2><a class="self-link" href="#overzicht" aria-label="Permalink for Section 4."></a></div>
<p>TODO</p>
<section id="normatieve-referenties-0"><div class="header-wrapper"><h3 id="x4-1-normatieve-referenties"><bdi class="secno">4.1 </bdi>Normatieve referenties</h3><a class="self-link" href="#normatieve-referenties-0" aria-label="Permalink for Section 4.1"></a></div>
<p>TODO</p>
</section><section id="termen-en-definities"><div class="header-wrapper"><h3 id="x4-2-termen-en-definities"><bdi class="secno">4.2 </bdi>Termen en definities</h3><a class="self-link" href="#termen-en-definities" aria-label="Permalink for Section 4.2"></a></div>
<p>TODO</p>
</section><section id="symbolen-en-afkortingen"><div class="header-wrapper"><h3 id="x4-3-symbolen-en-afkortingen"><bdi class="secno">4.3 </bdi>Symbolen en afkortingen</h3><a class="self-link" href="#symbolen-en-afkortingen" aria-label="Permalink for Section 4.3"></a></div>
<p>Lijst van afkortingen en acroniemen die worden gehanteerd in deze
dataspecificatie.</p>
<p><strong>TODO</strong> nader in te vullen</p>
</section></section>
<section id="cat" class="normative">
<div class="header-wrapper"><h2 id="x5-gegevensdefinitie"><bdi class="secno">5. </bdi>Gegevensdefinitie</h2><a class="self-link" href="#cat" aria-label="Permalink for Section 5."></a></div>
<section id="EAID_19315070_841D_4f05_9549_81B3E1272F55">
<div class="header-wrapper"><h3 id="x5-1-cim-tr-context-overzicht"><bdi class="secno">5.1 </bdi> CIM-TR Context - overzicht</h3><a class="self-link" href="#EAID_19315070_841D_4f05_9549_81B3E1272F55" aria-label="Permalink for Section 5.1"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-context"><img src="data/Images/EAID_19315070_841D_4f05_9549_81B3E1272F55.png" usemap="#imagemap-EAID_19315070_841D_4f05_9549_81B3E1272F55" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-context">Figuur <bdi class="figno">2</bdi></a> <span class="fig-title">CIM-TR Context</span></figcaption>
</figure><map name="imagemap-EAID_19315070_841D_4f05_9549_81B3E1272F55"></map></div>
</section>
<section id="EAID_1F739A5B_7883_42b4_A9BE_366B26F97215">
<div class="header-wrapper"><h3 id="x5-2-cim-tr-kern-overzicht"><bdi class="secno">5.2 </bdi> CIM-TR Kern - overzicht</h3><a class="self-link" href="#EAID_1F739A5B_7883_42b4_A9BE_366B26F97215" aria-label="Permalink for Section 5.2"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-kern"><img src="data/Images/EAID_1F739A5B_7883_42b4_A9BE_366B26F97215.png" usemap="#imagemap-EAID_1F739A5B_7883_42b4_A9BE_366B26F97215" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-kern">Figuur <bdi class="figno">3</bdi></a> <span class="fig-title">CIM-TR Kern</span></figcaption>
</figure><map name="imagemap-EAID_1F739A5B_7883_42b4_A9BE_366B26F97215"><area shape="rect" alt="Grondslag" coords="1348,346,1471,441" href="#global_class_CIMTR_Grondslag"><area shape="rect" alt="Bedrijfsregel" coords="1061,351,1184,447" href="#global_class_CIMTR_Bedrijfsregel"><area shape="rect" alt="Conversieregel" coords="1061,473,1184,569" href="#global_class_CIMTR_Conversieregel"><area shape="rect" alt="Interactieregel" coords="1061,236,1184,332" href="#global_class_CIMTR_Interactieregel"><area shape="rect" alt="" coords="184,765,336,905" href="#global_class_CIMTR_Typering"><area shape="rect" alt="" coords="14,765,171,905" href="#global_class_CIMTR_Uitkomsttype"><area shape="rect" alt="Invoergegeven" coords="1525,592,1647,692" href="#global_class_CIMTR_Invoergegeven"><area shape="rect" alt="Feit" coords="1525,346,1648,441" href="#global_class_CIMTR_Feit"><area shape="rect" alt="Identificatie" coords="351,765,567,827" href="#global_class_CIMTR_Identificatie"><area shape="rect" alt="Regelbeheerobject" coords="14,221,231,336" href="#global_class_CIMTR_Regelbeheerobject"><area shape="rect" alt="Uitkomst" coords="302,592,462,701" href="#global_class_CIMTR_Uitkomst"><area shape="rect" alt="Aansluitpunt" coords="548,224,685,333" href="#global_class_CIMTR_Aansluitpunt"><area shape="rect" alt="Toepasbare Regelset" coords="299,361,467,474" href="#global_class_CIMTR_ToepasbareRegelset"><area shape="rect" alt="Uitvoeringsregel" coords="1061,592,1182,692" href="#global_class_CIMTR_Uitvoeringsregel"><area shape="rect" alt="Toepasbare regel" coords="789,365,925,474" href="#global_class_CIMTR_ToepasbareRegel"><area shape="rect" alt="Werkzaamheid" coords="869,14,1129,123" href="#global_class_CIMTR_Werkzaamheid"><area shape="rect" alt="Toepasbare activiteit" coords="299,42,467,194" href="#global_class_CIMTR_ToepasbareActiviteit"></map></div>
</section>
<section id="EAID_F28E4916_8CBE_4e73_887D_00C55E1C3F39">
<div class="header-wrapper"><h3 id="x5-3-cim-tr-uitkomsten-overzicht"><bdi class="secno">5.3 </bdi> CIM-TR Uitkomsten - overzicht</h3><a class="self-link" href="#EAID_F28E4916_8CBE_4e73_887D_00C55E1C3F39" aria-label="Permalink for Section 5.3"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-uitkomsten"><img src="data/Images/EAID_F28E4916_8CBE_4e73_887D_00C55E1C3F39.png" usemap="#imagemap-EAID_F28E4916_8CBE_4e73_887D_00C55E1C3F39" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-uitkomsten">Figuur <bdi class="figno">4</bdi></a> <span class="fig-title">CIM-TR Uitkomsten</span></figcaption>
</figure><map name="imagemap-EAID_F28E4916_8CBE_4e73_887D_00C55E1C3F39"><area shape="rect" alt="Indieningsvereisten" coords="596,221,839,327" href="#global_class_CIMTR_Indieningsvereisten"><area shape="rect" alt="Maatregel" coords="295,381,523,465" href="#global_class_CIMTR_Maatregel"><area shape="rect" alt="Maatregelen op maat" coords="338,213,560,327" href="#global_class_CIMTR_MaatregelenOpMaat"><area shape="rect" alt="Conclusie" coords="14,213,295,327" href="#global_class_CIMTR_Conclusie"><area shape="rect" alt="ToestemmingTypering" coords="14,379,264,467" href="#global_class_CIMTR_ToestemmingTypering"><area shape="rect" alt="Uitkomst" coords="338,14,619,93" href="#global_class_CIMTR_Uitkomst"></map></div>
</section>
<section id="EAID_D0A77EDC_E94F_49e7_86BA_56802CF69E17">
<div class="header-wrapper"><h3 id="x5-4-cim-tr-uitvoeringsregels-overzicht"><bdi class="secno">5.4 </bdi> CIM-TR Uitvoeringsregels - overzicht</h3><a class="self-link" href="#EAID_D0A77EDC_E94F_49e7_86BA_56802CF69E17" aria-label="Permalink for Section 5.4"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-uitvoeringsregels"><img src="data/Images/EAID_D0A77EDC_E94F_49e7_86BA_56802CF69E17.png" usemap="#imagemap-EAID_D0A77EDC_E94F_49e7_86BA_56802CF69E17" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-uitvoeringsregels">Figuur <bdi class="figno">5</bdi></a> <span class="fig-title">CIM-TR Uitvoeringsregels</span></figcaption>
</figure><map name="imagemap-EAID_D0A77EDC_E94F_49e7_86BA_56802CF69E17"><area shape="rect" alt="" coords="198,907,321,1011" href="#global_class_CIMTR_Register"><area shape="rect" alt="Registerbevraging GGS" coords="914,482,1181,640" href="#global_class_CIMTR_RegisterbevragingGGS"><area shape="rect" alt="Afnamepunt" coords="571,705,733,787" href="#global_class_CIMTR_Afnamepunt"><area shape="rect" alt="" coords="339,705,554,827" href="#global_class_CIMTR_Context"><area shape="rect" alt="" coords="14,705,180,1164" href="#global_class_CIMTR_DocumentTypeGeneriek"><area shape="rect" alt="" coords="198,705,321,880" href="#global_class_CIMTR_Gegevenstype"><area shape="rect" alt="Bijlagedefinitie" coords="14,500,361,622" href="#global_class_CIMTR_Bijlagedefinitie"><area shape="rect" alt="Uitkomst herbruikbare beslissing" coords="1335,235,1640,374" href="#global_class_CIMTR_UitkomstHerbruikbareBeslissing"><area shape="rect" alt="Registerbevraging API-profiel" coords="1199,482,1465,640" href="#global_class_CIMTR_RegisterbevragingAPIProfiel"><area shape="rect" alt="Impliciet antwoord" coords="745,235,1039,374" href="#global_class_CIMTR_ImplicietAntwoord"><area shape="rect" alt="Vaste waarde" coords="474,235,733,374" href="#global_class_CIMTR_VasteWaarde"><area shape="rect" alt="Vraagdefinitie" coords="124,234,247,329" href="#global_class_CIMTR_Vraagdefinitie"><area shape="rect" alt="Registerbevraging" coords="1051,235,1317,374" href="#global_class_CIMTR_Registerbevraging"><area shape="rect" alt="Geoverwijzing" coords="260,234,462,338" href="#global_class_CIMTR_Geoverwijzing"><area shape="rect" alt="Uitvoeringsregel" coords="484,14,678,123" href="#global_class_CIMTR_Uitvoeringsregel"></map></div>
</section>
<section id="EAID_A7781548_EEB5_4d67_BA05_557FA0C632D2">
<div class="header-wrapper"><h3 id="x5-5-cim-tr-functionele-structuur-overzicht"><bdi class="secno">5.5 </bdi> CIM-TR Functionele Structuur - overzicht</h3><a class="self-link" href="#EAID_A7781548_EEB5_4d67_BA05_557FA0C632D2" aria-label="Permalink for Section 5.5"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-functionele-structuur"><img src="data/Images/EAID_A7781548_EEB5_4d67_BA05_557FA0C632D2.png" usemap="#imagemap-EAID_A7781548_EEB5_4d67_BA05_557FA0C632D2" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-functionele-structuur">Figuur <bdi class="figno">6</bdi></a> <span class="fig-title">CIM-TR Functionele Structuur</span></figcaption>
</figure><map name="imagemap-EAID_A7781548_EEB5_4d67_BA05_557FA0C632D2"><area shape="rect" alt="Werkzaamheid" coords="797,619,933,728" href="#global_class_CIMTR_Werkzaamheid"><area shape="rect" alt="Toepasbare activiteit" coords="436,614,581,723" href="#global_class_CIMTR_ToepasbareActiviteit"></map></div>
</section>
<section id="EAID_9B4AABF3_FDE7_4b65_A090_7C7E62143630">
<div class="header-wrapper"><h3 id="x5-6-cim-tr-toepasbare-activiteit-overzicht"><bdi class="secno">5.6 </bdi> CIM-TR Toepasbare Activiteit - overzicht</h3><a class="self-link" href="#EAID_9B4AABF3_FDE7_4b65_A090_7C7E62143630" aria-label="Permalink for Section 5.6"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-toepasbare-activiteit"><img src="data/Images/EAID_9B4AABF3_FDE7_4b65_A090_7C7E62143630.png" usemap="#imagemap-EAID_9B4AABF3_FDE7_4b65_A090_7C7E62143630" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-toepasbare-activiteit">Figuur <bdi class="figno">7</bdi></a> <span class="fig-title">CIM-TR Toepasbare Activiteit</span></figcaption>
</figure><map name="imagemap-EAID_9B4AABF3_FDE7_4b65_A090_7C7E62143630"><area shape="rect" alt="Regelbeheerobject" coords="82,711,242,832" href="#global_class_CIMTR_Regelbeheerobject"><area shape="rect" alt="Toepasbare Regelset" coords="451,724,588,815" href="#global_class_CIMTR_ToepasbareRegelset"><area shape="rect" alt="Werkzaamheid" coords="451,470,711,579" href="#global_class_CIMTR_Werkzaamheid"><area shape="rect" alt="Toepasbare activiteit" coords="78,463,246,620" href="#global_class_CIMTR_ToepasbareActiviteit"></map></div>
</section>
<section id="EAID_DEC8674B_FA40_4fc9_ADB0_C04E82493850">
<div class="header-wrapper"><h3 id="x5-7-cim-tr-behandeldienstconfiguratie-overzicht"><bdi class="secno">5.7 </bdi> CIM-TR Behandeldienstconfiguratie - overzicht</h3><a class="self-link" href="#EAID_DEC8674B_FA40_4fc9_ADB0_C04E82493850" aria-label="Permalink for Section 5.7"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-behandeldienstconfiguratie"><img src="data/Images/EAID_DEC8674B_FA40_4fc9_ADB0_C04E82493850.png" usemap="#imagemap-EAID_DEC8674B_FA40_4fc9_ADB0_C04E82493850" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-behandeldienstconfiguratie">Figuur <bdi class="figno">8</bdi></a> <span class="fig-title">CIM-TR Behandeldienstconfiguratie</span></figcaption>
</figure><map name="imagemap-EAID_DEC8674B_FA40_4fc9_ADB0_C04E82493850"><area shape="rect" alt="" coords="253,843,405,983" href="#global_class_CIMTR_Typering"><area shape="rect" alt="Identificatie" coords="429,843,566,953" href="#global_class_CIMTR_Identificatie"><area shape="rect" alt="" coords="107,843,230,1000" href="#global_class_CIMTR_Bestuurslaag"><area shape="rect" alt="Toepasbare activiteit" coords="85,523,253,806" href="#global_class_CIMTR_ToepasbareActiviteit"></map></div>
</section>
<section id="EAID_F12EF44C_9B98_45d6_A386_275452AF216F">
<div class="header-wrapper"><h3 id="x5-8-cim-tr-opstellen-aanvraag-overzicht"><bdi class="secno">5.8 </bdi> CIM-TR Opstellen aanvraag - overzicht</h3><a class="self-link" href="#EAID_F12EF44C_9B98_45d6_A386_275452AF216F" aria-label="Permalink for Section 5.8"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-opstellen-aanvraag"><img src="data/Images/EAID_F12EF44C_9B98_45d6_A386_275452AF216F.png" usemap="#imagemap-EAID_F12EF44C_9B98_45d6_A386_275452AF216F" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-opstellen-aanvraag">Figuur <bdi class="figno">9</bdi></a> <span class="fig-title">CIM-TR Opstellen aanvraag</span></figcaption>
</figure><map name="imagemap-EAID_F12EF44C_9B98_45d6_A386_275452AF216F"><area shape="rect" alt="Toepasbare activiteit" coords="549,79,717,236" href="#global_class_CIMTR_ToepasbareActiviteit"><area shape="rect" alt="Regelbeheerobject" coords="64,97,224,219" href="#global_class_CIMTR_Regelbeheerobject"><area shape="rect" alt="Bijlagedefinitie" coords="64,754,411,876" href="#global_class_CIMTR_Bijlagedefinitie"><area shape="rect" alt="Vraagdefinitie" coords="547,760,683,869" href="#global_class_CIMTR_Vraagdefinitie"><area shape="rect" alt="Invoergegeven" coords="861,554,998,663" href="#global_class_CIMTR_Invoergegeven"><area shape="rect" alt="Feit" coords="861,327,998,436" href="#global_class_CIMTR_Feit"><area shape="rect" alt="Uitkomst" coords="64,554,224,663" href="#global_class_CIMTR_Uitkomst"><area shape="rect" alt="Toepasbare Regelset" coords="60,323,228,436" href="#global_class_CIMTR_ToepasbareRegelset"><area shape="rect" alt="Uitvoeringsregel" coords="547,554,683,663" href="#global_class_CIMTR_Uitvoeringsregel"><area shape="rect" alt="Toepasbare regel" coords="549,327,686,436" href="#global_class_CIMTR_ToepasbareRegel"></map></div>
</section>
<section id="EAID_34AFE070_F54D_4b48_BD9F_FC374B592CE5">
<div class="header-wrapper"><h3 id="x5-9-cim-tr-datatypen-en-waardelijsten-overzicht"><bdi class="secno">5.9 </bdi> CIM-TR Datatypen en waardelijsten - overzicht</h3><a class="self-link" href="#EAID_34AFE070_F54D_4b48_BD9F_FC374B592CE5" aria-label="Permalink for Section 5.9"></a></div>
<div class="imageinfo overview">
<figure id="fig-cim-tr-datatypen-en-waardelijsten"><img src="data/Images/EAID_34AFE070_F54D_4b48_BD9F_FC374B592CE5.png" usemap="#imagemap-EAID_34AFE070_F54D_4b48_BD9F_FC374B592CE5" alt="Diagram
"><figcaption><a class="self-link" href="#fig-cim-tr-datatypen-en-waardelijsten">Figuur <bdi class="figno">10</bdi></a> <span class="fig-title">CIM-TR Datatypen en waardelijsten</span></figcaption>
</figure><map name="imagemap-EAID_34AFE070_F54D_4b48_BD9F_FC374B592CE5"><area shape="rect" alt="" coords="210,176,362,316" href="#global_class_CIMTR_Typering"><area shape="rect" alt="ToestemmingTypering" coords="23,588,194,689" href="#global_class_CIMTR_ToestemmingTypering"><area shape="rect" alt="" coords="395,176,532,286" href="#global_class_CIMTR_Register"><area shape="rect" alt="Maatregel" coords="637,588,774,697" href="#global_class_CIMTR_Maatregel"><area shape="rect" alt="Identificatie" coords="277,588,414,697" href="#global_class_CIMTR_Identificatie"><area shape="rect" alt="" coords="637,14,774,189" href="#global_class_CIMTR_Gegevenstype"><area shape="rect" alt="" coords="14,14,180,478" href="#global_class_CIMTR_DocumentTypeGeneriek"><area shape="rect" alt="" coords="395,14,610,135" href="#global_class_CIMTR_Context"><area shape="rect" alt="" coords="217,346,354,503" href="#global_class_CIMTR_Bestuurslaag"><area shape="rect" alt="Afnamepunt" coords="487,588,623,697" href="#global_class_CIMTR_Afnamepunt"><area shape="rect" alt="" coords="208,14,365,153" href="#global_class_CIMTR_Uitkomsttype"></map></div>
</section>
<section id="objecttypen">
<div class="header-wrapper"><h3 id="x5-10-objecttypen"><bdi class="secno">5.10 </bdi>Objecttypen </h3><a class="self-link" href="#objecttypen" aria-label="Permalink for Section 5.10"></a></div>
<section id="global_class_CIMTR_Geoverwijzing">
<div class="header-wrapper"><h4 id="x5-10-1-geoverwijzing"><bdi class="secno">5.10.1 </bdi> Geoverwijzing</h4><a class="self-link" href="#global_class_CIMTR_Geoverwijzing" aria-label="Permalink for Section 5.10.1"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Geoverwijzing</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>De GEO-Verwijzing bevat een locatie (in de vorm van een verwijzing naar een locatie
in Ozon).</p>
<p>Deze relatie 'verwijst naar' moet nog als externe koppeling worden toegevoegd aan
dit model</p>
</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-attributen">Overzicht attributen </h5><a class="self-link" href="#global_class_CIMTR_Geoverwijzing" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<tbody>
<tr>
<th>Attribuutnaam</th>
<th>Definitie</th>
<th>Formaat</th>
<th>Card</th>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_CIMTR_Geoverwijzing_locatie">locatie</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>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-relaties">Overzicht relaties </h5><a class="self-link" href="#global_class_CIMTR_Geoverwijzing" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<tbody>
<tr>
<th>Rol naam met kardinaliteiten</th>
<th>Definitie</th>
</tr>
<tr>
<td>
Geoverwijzing
is specialisatie van
<a class="link" href="#global_class_CIMTR_Uitvoeringsregel">Uitvoeringsregel</a>
</td>
<td>
<p>De uitvoeringsregels bepalen hoe de benodigde gegevens (input data) worden uitgevraagd.
Dit kan op verschillende manieren gebeuren zoals een vraag aan een initiatiefnemer
of een bevraging van een registratie. </p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_CIMTR_Conclusie">
<div class="header-wrapper"><h4 id="x5-10-2-conclusie"><bdi class="secno">5.10.2 </bdi> Conclusie</h4><a class="self-link" href="#global_class_CIMTR_Conclusie" aria-label="Permalink for Section 5.10.2"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Conclusie</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Conclusie van de check. Antwoord op de vraag of ik een melding moet doen of een vergunning
aan moet vragen voor een bepaalde activiteit</p>
</td>
</tr>
<tr>
<th>Populatie</th>
<td>
Voor objecttypen die deel uitmaken van een (basis)registratie betreft dit de beschrijving
van de exemplaren van het gedefinieerde objecttype die in de desbetreffende (basis)-registratie
voorhanden zijn.
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
Een inhoudelijke toelichting op de toepassing van het informatie-element.
</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-attributen-0">Overzicht attributen </h5><a class="self-link" href="#global_class_CIMTR_Conclusie" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<tbody>
<tr>
<th>Attribuutnaam</th>
<th>Definitie</th>
<th>Formaat</th>
<th>Card</th>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_CIMTR_Conclusie_toestemmingen">toestemmingen</a>
</td>
<td></td>
<td>
<a class="link" href="#global_class_CIMTR_ToestemmingTypering">ToestemmingTypering</a>
</td>
<td>1</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-relaties-0">Overzicht relaties </h5><a class="self-link" href="#global_class_CIMTR_Conclusie" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<tbody>
<tr>
<th>Rol naam met kardinaliteiten</th>
<th>Definitie</th>
</tr>
<tr>
<td>
Conclusie
is specialisatie van
<a class="link" href="#global_class_CIMTR_Uitkomst">Uitkomst</a>
</td>
<td>
<p>De uiteindelijke afleiding van een toepasbare regelset. Dit kan één van de uitkomsttypes
zijn:</p>
<ul>
<li>Conclusie in het geval van checken</li>
<li>Indieningsvereisten in het geval van indienen</li>
<li>Maatregel in het geval van maatregelen die behoren bij voorschriften.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_CIMTR_RegisterbevragingAPIProfiel">
<div class="header-wrapper"><h4 id="x5-10-3-registerbevraging-api-profiel"><bdi class="secno">5.10.3 </bdi> Registerbevraging API-profiel</h4><a class="self-link" href="#global_class_CIMTR_RegisterbevragingAPIProfiel" aria-label="Permalink for Section 5.10.3"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Registerbevraging API-profiel</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Via een Registerbevraging API-profiel kan een gegeven uit een basisregistratie worden
geraadpleegd en
gebruikt</p>
</td>
</tr>
<tr>
<th>Populatie</th>
<td>
Voor objecttypen die deel uitmaken van een (basis)registratie betreft dit de beschrijving
van de exemplaren van het gedefinieerde objecttype die in de desbetreffende (basis)-registratie
voorhanden zijn.
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
Een inhoudelijke toelichting op de toepassing van het informatie-element.
</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-attributen-1">Overzicht attributen </h5><a class="self-link" href="#global_class_CIMTR_RegisterbevragingAPIProfiel" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<tbody>
<tr>
<th>Attribuutnaam</th>
<th>Definitie</th>
<th>Formaat</th>
<th>Card</th>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_CIMTR_RegisterbevragingAPIProfiel_afnamepunt">afnamepunt</a>
</td>
<td></td>
<td>
<a class="link" href="#global_class_CIMTR_Afnamepunt">Afnamepunt</a>
</td>
<td>1</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-relaties-1">Overzicht relaties </h5><a class="self-link" href="#global_class_CIMTR_RegisterbevragingAPIProfiel" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<tbody>
<tr>
<th>Rol naam met kardinaliteiten</th>
<th>Definitie</th>
</tr>
<tr>
<td>
Registerbevraging API-profiel
is specialisatie van
<a class="link" href="#global_class_CIMTR_Registerbevraging">Registerbevraging</a>
</td>
<td>
<p>Via een Registerbevraging wordt een register geraadpleegd om gegevens te verkrijgen.</p>
<p>Een externe koppelingsrelatie naar Gegevensklasse (raadpleegt) en Eigenschap (gebruikt
0..* in CIM-OI moet nog worden toegevoegd.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_CIMTR_ToepasbareRegel">
<div class="header-wrapper"><h4 id="x5-10-4-toepasbare-regel"><bdi class="secno">5.10.4 </bdi> Toepasbare regel</h4><a class="self-link" href="#global_class_CIMTR_ToepasbareRegel" aria-label="Permalink for Section 5.10.4"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Toepasbare regel</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Toepasbare regels zijn begrijpelijke regels die zijn opgesteld op grond van juridische
regels (zoals Omgevingswet, AMvB’s, omgevingsplannen, en verordeningen). Zij bestaan
uit: bedrijfsregels (business logica), uitvoeringsregels en conversieregels (uitvraging
en koppeling data aan bedrijfsregels) en interactieregels (presentatielogica). Zij
resulteren in begrijpelijke vragenbomen aan de initiatiefnemer. Ze komen samen in
de toepasbare regelset.</p>
</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-relaties-2">Overzicht relaties </h5><a class="self-link" href="#global_class_CIMTR_ToepasbareRegel" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<tbody>
<tr>
<th>Rol naam met kardinaliteiten</th>
<th>Definitie</th>
</tr>
<tr>
<td>
<a class="link" href="#global_class_CIMTR_ToepasbareRegelset">Toepasbare Regelset</a>
[ 1 ]
<a class="link" href="#detail_association_CIMTR_ToepasbareRegelset_groepeert">groepeert</a>
Toepasbare regel
[ 1 .. * ]
</td>
<td></td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_CIMTR_ToepasbareActiviteit">
<div class="header-wrapper"><h4 id="x5-10-5-toepasbare-activiteit"><bdi class="secno">5.10.5 </bdi> Toepasbare activiteit</h4><a class="self-link" href="#global_class_CIMTR_ToepasbareActiviteit" aria-label="Permalink for Section 5.10.5"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Toepasbare activiteit</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Een toepasbare activiteit is een specialisering van een juridische activiteit. Ze
zijn dan ook één op één aan elkaar verbonden. Om een juridische activiteit te kunnen
gebruiken kunnen de gebruikers een aantal attributen toeveogen om er op die manier
voor te zorgen dat een activiteit toepasbaaar is. </p>
</td>
</tr>
<tr>
<th>Indicatie abstract object</th>
<td>Nee</td>
</tr>
</tbody>
</table>
<div class="header-wrapper"><h5 id="overzicht-attributen-2">Overzicht attributen </h5><a class="self-link" href="#global_class_CIMTR_ToepasbareActiviteit" aria-label="Permalink for this Section"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 50%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<colgroup style="width: 10%;"></colgroup>
<tbody>
<tr>
<th>Attribuutnaam</th>
<th>Definitie</th>
<th>Formaat</th>
<th>Card</th>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_CIMTR_ToepasbareActiviteit_typering">typering</a>
</td>
<td></td>
<td>
<a class="link" href="#global_class_CIMTR_Typering">Typering</a>
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_CIMTR_ToepasbareActiviteit_verfijnbaar">verfijnbaar</a>
</td>
<td></td>
<td>
<a class="external-link" href="https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/#primitive-datatypes">Boolean</a>
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_CIMTR_ToepasbareActiviteit_magneet">magneet</a>
</td>
<td></td>
<td>
<a class="external-link" href="https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/#primitive-datatypes">Boolean</a>
</td>
<td>1</td>
</tr>
<tr>
<td>
<a class="link" href="#detail_attribute_CIMTR_ToepasbareActiviteit_toonbaar">toonbaar</a>
</td>
<td></td>
<td>
<a class="external-link" href="https://docs.geostandaarden.nl/mim/vv-st-mim-20200225/#primitive-datatypes">Boolean</a>
</td>