-
Notifications
You must be signed in to change notification settings - Fork 0
/
erfgoedregistratiestandaard.html
3828 lines (3732 loc) · 123 KB
/
erfgoedregistratiestandaard.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 charset="utf-8">
<meta name="generator" content="ReSpec 32.1.10">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<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;color:#000;box-shadow:0 1em 3em -.4em rgba(0,0,0,.3),0 0 1px 1px 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;top:0}
.dfn-panel:not(.docked)>.caret::before{border-bottom:9px solid #a2a9b1}
.dfn-panel *{margin:0}
.dfn-panel b{display:block;color:#000;margin-top:.25em}
.dfn-panel ul a[href]{color:#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>
<title>Erfgoed Registratie Standaard</title>
<link rel="stylesheet" type="text/css" href="./media/style.css">
<link rel="shortcut icon" type="image/x-icon" href="https://monumentengemeenten.nl/wp-content/themes/elle/images/favicon.ico">
<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)}
}
:is(h1,h2,h3,h4,h5,h6,a) abbr{border:none}
dfn{font-weight:700}
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}
code{color:#c63501}
th code{color:inherit}
a[href].orcid{padding-left:4px;padding-right:4px}
a[href].orcid>svg{margin-bottom:-2px}
.toc a,.tof a{text-decoration:none}
a .figno,a .secno{color:#000}
ol.tof,ul.tof{list-style:none outside none}
.caption{margin-top:.5em;font-style:italic}
table.simple{border-spacing:0;border-collapse:collapse;border-bottom:3px solid #005a9c}
.simple th{background:#005a9c;color:#fff;padding:3px 5px;text-align:left}
.simple th a{color:#fff;padding:3px 5px;text-align:left}
.simple th[scope=row]{background:inherit;color:inherit;border-top:1px solid #ddd}
.simple td{padding:3px 10px;border-top:1px solid #ddd}
.simple tr:nth-child(even){background:#f0f6ff}
.section dd>p:first-child{margin-top:0}
.section dd>p:last-child{margin-bottom:0}
.section dd{margin-bottom:1em}
.section dl.attrs dd,.section dl.eldef dd{margin-bottom:0}
#issue-summary>ul{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}
:is(h2,h3,h4,h5,h6):not(#toc>h2,#abstract>h2,#sotd>h2,.head>h2){position:relative;left:-.5em}
:is(h2,h3,h4,h5,h6):not(#toch2)+a.self-link{color:inherit;order:-1;position:relative;left:-1.1em;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>
<meta name="description" content="Erfgoedregistratie Standaard, versie 1.0.">
<style>
var{position:relative;cursor:pointer}
var[data-type]::after,var[data-type]::before{position:absolute;left:50%;top:-6px;opacity:0;transition:opacity .4s;pointer-events:none}
var[data-type]::before{content:"";transform:translateX(-50%);border-width:4px 6px 0 6px;border-style:solid;border-color:transparent;border-top-color:#000}
var[data-type]::after{content:attr(data-type);transform:translateX(-50%) translateY(-100%);background:#000;text-align:center;font-family:"Dank Mono","Fira Code",monospace;font-style:normal;padding:6px;border-radius:3px;color:#daca88;text-indent:0;font-weight:400}
var[data-type]:hover::after,var[data-type]:hover::before{opacity:1}
</style>
<script id="initialUserConfig" type="application/json">{
"format": "markdown",
"editors": [
{
"name": "Marjolein Steeman",
"company": "FGM - Werkgroep De Databeet",
"companyURL": "https://monumentengemeenten.nl/werkgroepen-2/werkgroep-data-beet"
}
],
"authors": [
{
"name": "Marjolein Steeman",
"company": "FGM - Werkgroep De Databeet",
"companyURL": "https://monumentengemeenten.nl/werkgroepen-2/werkgroep-data-beet"
},
{
"name": "Francien van Zaanen Durand",
"company": "FGM - Werkgroep De Databeet",
"companyURL": "https://monumentengemeenten.nl/werkgroepen-2/werkgroep-data-beet"
}
],
"shortName": "ers",
"pubDomain": "ers",
"licence": "cc-by-nd",
"localBiblio": {
"MDA": {
"title": "Model Driven Architecture (MDA) Guide",
"href": "",
"status": "rev. 2.0, 1-6-2014",
"publisher": "",
"company": "Object Management Group"
},
"UML": {
"title": "Unified Modeling Language (UML)",
"href": "http://uml.org",
"status": "",
"publisher": "",
"company": ""
},
"ODM": {
"title": "Ontology Definition Metamodel",
"href": "https://www.omg.org/spec/ODM/1.1",
"status": "versie 1.1, September 2014",
"publisher": "",
"company": "Object Management Group"
},
"OMG": {
"title": "OMG Unified Modeling Language TM",
"href": "http://www.omg.org/spec/UML/2.5",
"status": "versie 2.5",
"publisher": "",
"company": ""
},
"SCAT": {
"title": "Stelselcatalogus",
"href": "http://www.stelselcatalogus.nl",
"status": "",
"publisher": "",
"company": ""
},
"GAB": {
"title": "GAB",
"href": "https://www.noraonline.nl/wiki/Gemeenschappelijke_Afspraken_Berichten",
"status": "",
"publisher": "",
"company": ""
},
"Linked-Data": {
"title": "Linked Data",
"href": "https://www.noraonline.nl/wiki/Linked_Data",
"status": "",
"publisher": "",
"company": ""
},
"iso-8601": {
"title": "Representation of dates and times. ISO 8601:2004.",
"href": "http://www.iso.org/iso/catalogue_detail?csnumber=40874",
"publisher": "International Organization for Standardization (ISO)",
"date": "2004",
"status": "ISO 8601:2004"
},
"NORA": {
"title": "Handreiking gegevensbeschrijving (NORA)",
"href": "http://noraonline.nl/wiki/Gegevensbeschrijvingen/Handreiking",
"status": "",
"publisher": "",
"company": ""
},
"iso-11404": {
"title": "11404:2008 Information technology – General Purpose Datatypes (GPD)",
"href": "https://www.nen.nl/nen-iso-iec-11404-2008-en-122652",
"status": "",
"publisher": "",
"company": "NEN-ISO/IEC"
},
"REGEXP": {
"title": "Formeel patroon (Reguliere Expressies)",
"href": "http://perldoc.perl.org/perlre.html",
"status": "",
"publisher": "",
"company": ""
},
"OCL": {
"title": "OCL",
"href": "http://www.omg.org/spec/OCL/2.4/",
"status": "",
"publisher": "",
"company": ""
},
"NEN3610": {
"title": "NEN-3610 Basismodel geo-informatie",
"href": "https://www.nen.nl/nen-3610-2011-a1-2016-nl-217738",
"date": "Mei 2016",
"publisher": "NEN"
},
"GeoJSON": {
"title": "GeoJSON",
"href": "https://geojson.org/",
"publisher": "",
"status": "",
"company": ""
},
"SOAP": {
"title": "SOAP Specifications",
"href": "https://www.w3.org/TR/SOAP/",
"publisher": "",
"status": "",
"company": ""
}
},
"previousPublishDate": "2019-09-11",
"previousMaturity": "GN-CV",
"maxTocLevel": 4,
"publishISODate": "2022-07-04T00:00:00.000Z",
"generatedSubtitle": "4 juli 2022"
}</script>
<link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2021/base.css"></head>
<body class="h-entry informative"><div class="head">
<h1 id="title" class="title">Erfgoed Registratie Standaard</h1>
<p id="w3c-state"> <time class="dt-published" datetime="2022-07-04">4 juli 2022</time></p>
<details open="">
<summary>More details about this document</summary>
<dl>
<dt>Laatst gepubliceerde versie:</dt><dd>
<a href="https://www.w3.org/ers/">https://www.w3.org/ers/</a>
</dd>
<dt>Redacteur:</dt><dd class="editor p-author h-card vcard">
<span class="p-name fn">Marjolein Steeman</span> (<a class="p-org org h-org" href="https://monumentengemeenten.nl/werkgroepen-2/werkgroep-data-beet">FGM - Werkgroep De Databeet</a>)
</dd>
<dt>Auteurs:</dt><dd class="editor p-author h-card vcard">
<span class="p-name fn">Marjolein Steeman</span> (<a class="p-org org h-org" href="https://monumentengemeenten.nl/werkgroepen-2/werkgroep-data-beet">FGM - Werkgroep De Databeet</a>)
</dd><dd class="editor p-author h-card vcard">
<span class="p-name fn">Francien van Zaanen Durand</span> (<a class="p-org org h-org" href="https://monumentengemeenten.nl/werkgroepen-2/werkgroep-data-beet">FGM - Werkgroep De Databeet</a>)
</dd>
</dl>
</details>
<p class="copyright">
<a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
©
2022
<a href="https://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="https://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>,
<a href="https://www.ercim.eu/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="https://www.keio.ac.jp/">Keio</a>,
<a href="https://ev.buaa.edu.cn/">Beihang</a>). W3C
<a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
<a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and
<a rel="license" href="https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" title="W3C Software and Document Notice and License">permissive document license</a> rules apply.
</p>
<hr title="Separator for header">
</div><section id="abstract" data-format="markdown" class="introductory"><h2>Samenvatting</h2>
<p>Erfgoedregistratie Standaard, <strong>versie 1.0</strong>.</p>
<p>Werkgroep De Data-Beet heeft in opdracht van het BPE en in de lijn met haar visie deze Erfgoedregistratie Standaard ontwikkeld.</p>
</section>
<section id="sotd" class="introductory"><h2>Status van dit document</h2><p>
This document is merely a <abbr title="World Wide Web Consortium">W3C</abbr>-internal
document. It has no official standing
of any kind and does not represent consensus of the <abbr title="World Wide Web Consortium">W3C</abbr> Membership.
</p><p></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="#inleiding"><bdi class="secno">1. </bdi>Inleiding</a></li><li class="tocline"><a class="tocxref" href="#informatiemodel"><bdi class="secno">2. </bdi>Informatiemodel</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#erfgoedobject"><bdi class="secno">2.1 </bdi>ErfgoedObject</a></li><li class="tocline"><a class="tocxref" href="#erfgoedomgeving"><bdi class="secno">2.2 </bdi>ErfgoedOmgeving</a></li><li class="tocline"><a class="tocxref" href="#erfgoeddeelobject"><bdi class="secno">2.3 </bdi>ErfgoedDeelobject</a></li><li class="tocline"><a class="tocxref" href="#situering"><bdi class="secno">2.4 </bdi>Situering</a></li></ol></li><li class="tocline"><a class="tocxref" href="#objecttypen"><bdi class="secno">3. </bdi>Objecttypen</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#objecttype-im_ers_object"><bdi class="secno">3.1 </bdi>Objecttype IM_ERS_Object</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#definitie"><bdi class="secno">3.1.1 </bdi>Definitie</a></li><li class="tocline"><a class="tocxref" href="#attribuutsoorten"><bdi class="secno">3.1.2 </bdi>Attribuutsoorten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#identificatie"><bdi class="secno">3.1.2.1 </bdi>identificatie</a></li><li class="tocline"><a class="tocxref" href="#tijdstipregistratie"><bdi class="secno">3.1.2.2 </bdi>tijdstipRegistratie</a></li><li class="tocline"><a class="tocxref" href="#eindregistratie"><bdi class="secno">3.1.2.3 </bdi>eindRegistratie</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#objecttype-erfgoedobject"><bdi class="secno">3.2 </bdi>Objecttype ErfgoedObject</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#definitie-0"><bdi class="secno">3.2.1 </bdi>Definitie</a></li><li class="tocline"><a class="tocxref" href="#attribuutsoorten-0"><bdi class="secno">3.2.2 </bdi>Attribuutsoorten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#aardregistratie"><bdi class="secno">3.2.2.1 </bdi>aardRegistratie</a></li><li class="tocline"><a class="tocxref" href="#beschermdals"><bdi class="secno">3.2.2.2 </bdi>beschermdAls</a></li><li class="tocline"><a class="tocxref" href="#beschermddoor"><bdi class="secno">3.2.2.3 </bdi>beschermdDoor</a></li><li class="tocline"><a class="tocxref" href="#datuminprocedure"><bdi class="secno">3.2.2.4 </bdi>datumInProcedure</a></li><li class="tocline"><a class="tocxref" href="#datumaanwijzing"><bdi class="secno">3.2.2.5 </bdi>datumAanwijzing</a></li><li class="tocline"><a class="tocxref" href="#datumnietaanwijzen"><bdi class="secno">3.2.2.6 </bdi>datumNietAanwijzen</a></li><li class="tocline"><a class="tocxref" href="#datumafvoeren"><bdi class="secno">3.2.2.7 </bdi>datumAfvoeren</a></li><li class="tocline"><a class="tocxref" href="#toelichtingprocedure"><bdi class="secno">3.2.2.8 </bdi>toelichtingProcedure</a></li><li class="tocline"><a class="tocxref" href="#grondslag"><bdi class="secno">3.2.2.9 </bdi>grondslag</a></li><li class="tocline"><a class="tocxref" href="#monumentnummer"><bdi class="secno">3.2.2.10 </bdi>monumentnummer</a></li><li class="tocline"><a class="tocxref" href="#inonderzoek"><bdi class="secno">3.2.2.11 </bdi>inOnderzoek</a></li><li class="tocline"><a class="tocxref" href="#type"><bdi class="secno">3.2.2.12 </bdi>type</a></li><li class="tocline"><a class="tocxref" href="#contour"><bdi class="secno">3.2.2.13 </bdi>contour</a></li><li class="tocline"><a class="tocxref" href="#broncontour"><bdi class="secno">3.2.2.14 </bdi>broncontour</a></li><li class="tocline"><a class="tocxref" href="#puntcoordinaten"><bdi class="secno">3.2.2.15 </bdi>puntcoördinaten</a></li><li class="tocline"><a class="tocxref" href="#betreftpand"><bdi class="secno">3.2.2.16 </bdi>betreftPand</a></li><li class="tocline"><a class="tocxref" href="#betreftbgt"><bdi class="secno">3.2.2.17 </bdi>betreftBGT</a></li><li class="tocline"><a class="tocxref" href="#toelichtingadressering"><bdi class="secno">3.2.2.18 </bdi>toelichtingAdressering</a></li><li class="tocline"><a class="tocxref" href="#jaarbegin"><bdi class="secno">3.2.2.19 </bdi>jaarBegin</a></li><li class="tocline"><a class="tocxref" href="#jaareind"><bdi class="secno">3.2.2.20 </bdi>jaarEind</a></li><li class="tocline"><a class="tocxref" href="#annotatiejaarbegin"><bdi class="secno">3.2.2.21 </bdi>annotatieJaarBegin</a></li><li class="tocline"><a class="tocxref" href="#annotatiejaareind"><bdi class="secno">3.2.2.22 </bdi>annotatieJaarEind</a></li><li class="tocline"><a class="tocxref" href="#naam"><bdi class="secno">3.2.2.23 </bdi>naam</a></li><li class="tocline"><a class="tocxref" href="#redengevendeomschrijving"><bdi class="secno">3.2.2.24 </bdi>redengevendeOmschrijving</a></li><li class="tocline"><a class="tocxref" href="#beschrijving"><bdi class="secno">3.2.2.25 </bdi>beschrijving</a></li><li class="tocline"><a class="tocxref" href="#architectontwerp"><bdi class="secno">3.2.2.26 </bdi>architectOntwerp</a></li><li class="tocline"><a class="tocxref" href="#aanwezig"><bdi class="secno">3.2.2.27 </bdi>aanwezig</a></li><li class="tocline"><a class="tocxref" href="#opdrachtgeverbouw"><bdi class="secno">3.2.2.28 </bdi>opdrachtgeverBouw</a></li><li class="tocline"><a class="tocxref" href="#uitvoerendkunstenaar"><bdi class="secno">3.2.2.29 </bdi>uitvoerendKunstenaar</a></li><li class="tocline"><a class="tocxref" href="#oospronkelijkefunctie"><bdi class="secno">3.2.2.30 </bdi>oospronkelijkeFunctie</a></li><li class="tocline"><a class="tocxref" href="#gebouwtype"><bdi class="secno">3.2.2.31 </bdi>gebouwtype</a></li><li class="tocline"><a class="tocxref" href="#bouwstijl"><bdi class="secno">3.2.2.32 </bdi>bouwstijl</a></li><li class="tocline"><a class="tocxref" href="#oorspronkelijkefunctiecbs"><bdi class="secno">3.2.2.33 </bdi>oorspronkelijkeFunctieCBS</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#objecttype-erfgoedomgeving"><bdi class="secno">3.3 </bdi>Objecttype ErfgoedOmgeving</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#definitie-1"><bdi class="secno">3.3.1 </bdi>Definitie</a></li><li class="tocline"><a class="tocxref" href="#attribuutsoorten-1"><bdi class="secno">3.3.2 </bdi>Attribuutsoorten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#type-0"><bdi class="secno">3.3.2.1 </bdi>type</a></li><li class="tocline"><a class="tocxref" href="#contour-0"><bdi class="secno">3.3.2.2 </bdi>contour</a></li><li class="tocline"><a class="tocxref" href="#naam-0"><bdi class="secno">3.3.2.3 </bdi>naam</a></li><li class="tocline"><a class="tocxref" href="#beschrijving-0"><bdi class="secno">3.3.2.4 </bdi>beschrijving</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#objecttype-erfgoeddeelobject"><bdi class="secno">3.4 </bdi>Objecttype ErfgoedDeelObject</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#definitie-2"><bdi class="secno">3.4.1 </bdi>Definitie</a></li><li class="tocline"><a class="tocxref" href="#attribuutsoorten-2"><bdi class="secno">3.4.2 </bdi>Attribuutsoorten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#type-1"><bdi class="secno">3.4.2.1 </bdi>type</a></li><li class="tocline"><a class="tocxref" href="#aanwezig-0"><bdi class="secno">3.4.2.2 </bdi>aanwezig</a></li><li class="tocline"><a class="tocxref" href="#contour-1"><bdi class="secno">3.4.2.3 </bdi>contour</a></li><li class="tocline"><a class="tocxref" href="#broncontour-0"><bdi class="secno">3.4.2.4 </bdi>broncontour</a></li><li class="tocline"><a class="tocxref" href="#puntcoordinaten-0"><bdi class="secno">3.4.2.5 </bdi>puntcoördinaten</a></li><li class="tocline"><a class="tocxref" href="#betreftpand-0"><bdi class="secno">3.4.2.6 </bdi>betreftPand</a></li><li class="tocline"><a class="tocxref" href="#betreftbgt-0"><bdi class="secno">3.4.2.7 </bdi>betreftBGT</a></li><li class="tocline"><a class="tocxref" href="#jaarbegin-0"><bdi class="secno">3.4.2.8 </bdi>jaarBegin</a></li><li class="tocline"><a class="tocxref" href="#jaareind-0"><bdi class="secno">3.4.2.9 </bdi>jaarEind</a></li><li class="tocline"><a class="tocxref" href="#annotatiejaarbegin-0"><bdi class="secno">3.4.2.10 </bdi>annotatieJaarBegin</a></li><li class="tocline"><a class="tocxref" href="#annotatiejaareind-0"><bdi class="secno">3.4.2.11 </bdi>annotatieJaarEind</a></li><li class="tocline"><a class="tocxref" href="#naam-1"><bdi class="secno">3.4.2.12 </bdi>naam</a></li><li class="tocline"><a class="tocxref" href="#beschrijving-1"><bdi class="secno">3.4.2.13 </bdi>beschrijving</a></li><li class="tocline"><a class="tocxref" href="#architectontwerp-0"><bdi class="secno">3.4.2.14 </bdi>architectOntwerp</a></li><li class="tocline"><a class="tocxref" href="#opdrachtgeverbouw-0"><bdi class="secno">3.4.2.15 </bdi>opdrachtgeverBouw</a></li><li class="tocline"><a class="tocxref" href="#uitvoerendkunstenaar-0"><bdi class="secno">3.4.2.16 </bdi>uitvoerendKunstenaar</a></li><li class="tocline"><a class="tocxref" href="#oospronkelijkefunctie-0"><bdi class="secno">3.4.2.17 </bdi>oospronkelijkeFunctie</a></li><li class="tocline"><a class="tocxref" href="#gebouwtype-0"><bdi class="secno">3.4.2.18 </bdi>gebouwtype</a></li><li class="tocline"><a class="tocxref" href="#bouwstijl-0"><bdi class="secno">3.4.2.19 </bdi>bouwstijl</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#objecttype-situering"><bdi class="secno">3.5 </bdi>Objecttype Situering</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#definitie-3"><bdi class="secno">3.5.1 </bdi>Definitie</a></li><li class="tocline"><a class="tocxref" href="#attribuutsoorten-3"><bdi class="secno">3.5.2 </bdi>Attribuutsoorten</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#identificatie-0"><bdi class="secno">3.5.2.1 </bdi>identificatie</a></li><li class="tocline"><a class="tocxref" href="#situering-0"><bdi class="secno">3.5.2.2 </bdi>situering</a></li><li class="tocline"><a class="tocxref" href="#betreftadres"><bdi class="secno">3.5.2.3 </bdi>betreftAdres</a></li></ol></li></ol></li></ol></li></ol></nav>
<section data-format="markdown" id="inleiding"><div class="header-wrapper"><h2 id="x1-inleiding"><bdi class="secno">1. </bdi>Inleiding</h2><a class="self-link" href="#inleiding" aria-label="Permalink for Section 1."></a></div>
<p>De Erfgoed Registratie standaard is ontwikkeld in opdracht van de <a href="https://monumentengemeenten.nl/">Federatie Grote
Monumentengemeenten</a> door de werkgroep
<a href="https://monumentengemeenten.nl/werkgroepen-2/werkgroep-data-beet/">De DataBeet</a>.
Ze is gebaseerd op een inventarisatie van registraties van 9 gemeenten plus de registratie van Rijksmonumenten
door de Rijksdienst Cultureel Erfgoed. Deze publicatie is de uitkomst van een pilot waarin de
omzetting van een aantal gemeentelijke registraties naar deze standaard is getoetst. De
standaard staat open voor feedback en vragen. De website van de FGM (contactpagina De
DataBeet) biedt daartoe de mogelijkheid. <mark>Een uitgebreide beschrijving van de velden is daar
ook te downloaden.</mark></p>
</section>
<section data-format="markdown" id="informatiemodel"><div class="header-wrapper"><h2 id="x2-informatiemodel"><bdi class="secno">2. </bdi>Informatiemodel</h2><a class="self-link" href="#informatiemodel" aria-label="Permalink for Section 2."></a></div>
<p>Het informatiemodel beschrijft de logische relaties tussen de belangrijkste entiteiten van de
registratie. In dit schema is te zien dat het model bestaat uit drie lagen. <mark><del>Op het niveau van
het ErfgoedObject ligt tevens een relatie met de Basisregistratie Gebouwen (BAG), via een
pandID en/of adresID.</del></mark></p>
<p><img src="ers-media/Informatiemodel.png" alt="" height="462" width="1088"></p>
<section id="erfgoedobject"><div class="header-wrapper"><h3 id="x2-1-erfgoedobject"><bdi class="secno">2.1 </bdi>ErfgoedObject</h3><a class="self-link" href="#erfgoedobject" aria-label="Permalink for Section 2.1"></a></div>
<p>Gebouwen, andere bouwwerken zoals bruggen of sculpturen, alsook parken en andere
bovengrondse structuren kunnen zijn geregistreerd als ErfgoedObject. Dit vanwege hun
waarde bijvoorbeeld op grond van hun schoonheid of door het belang dat aan hun
geschiedenis wordt gehecht. Registratie betekent dat aan het object regels kunnen zijn
verbonden waar een beschermende werking van uitgaat. Registratie kan ook betekenen dat
de objectinformatie context geeft voor het toepassen van deze regelgeving.</p>
<p><mark>Zie <a href="#objecttype-erfgoedobject" data-matched-text="[[[#objecttype-erfgoedobject]]]" class="sec-ref"><bdi class="secno">3.2 </bdi>Objecttype ErfgoedObject</a> voor detailinformatie.</mark></p>
</section><section id="erfgoedomgeving"><div class="header-wrapper"><h3 id="x2-2-erfgoedomgeving"><bdi class="secno">2.2 </bdi>ErfgoedOmgeving</h3><a class="self-link" href="#erfgoedomgeving" aria-label="Permalink for Section 2.2"></a></div>
<p>ErfgoedObjecten kunnen deel uitmaken van een omgeving, waaraan zij ook een bepaalde
waarde ontlenen. De bescherming van het ErfgoedObject heeft omgekeerd ook betekenis
voor de bescherming van de omgeving. Dit kan nader zijn uitgewerkt in de regels. Voor één
ErfgoedObject geldt dat er meerdere ErfgoedOmgevingen relevant kunnen zijn.</p>
<p><mark>Zie <a href="#objecttype-erfgoedomgeving" data-matched-text="[[[#objecttype-erfgoedomgeving]]]" class="sec-ref"><bdi class="secno">3.3 </bdi>Objecttype ErfgoedOmgeving</a> voor detailinformatie.</mark></p>
</section><section id="erfgoeddeelobject"><div class="header-wrapper"><h3 id="x2-3-erfgoeddeelobject"><bdi class="secno">2.3 </bdi>ErfgoedDeelobject</h3><a class="self-link" href="#erfgoeddeelobject" aria-label="Permalink for Section 2.3"></a></div>
<p>ErfgoedObjecten kunnen één of meerdere ErfgoedDeelobjecten hebben. Deze deelobjecten
beschrijven bijvoorbeeld een bepaald onderdeel in detail. ErfgoedDeelobjecten ontlenen hun
bescherming aan de bescherming van het ErfgoedObject als geheel.</p>
<p><mark>Zie <a href="#objecttype-erfgoeddeelobject" data-matched-text="[[[#objecttype-erfgoeddeelobject]]]" class="sec-ref"><bdi class="secno">3.4 </bdi>Objecttype ErfgoedDeelObject</a> voor detailinformatie.</mark></p>
</section><section id="situering"><div class="header-wrapper"><h3 id="x2-4-situering"><bdi class="secno">2.4 </bdi>Situering</h3><a class="self-link" href="#situering" aria-label="Permalink for Section 2.4"></a></div>
<mark>
Op het niveau van het ErfgoedObject ligt tevens een relatie met de Basisregistratie Gebouwen (BAG), via een pandID en/of adresID.</mark>
<p><mark>Zie <a href="#objecttype-situering" data-matched-text="[[[#objecttype-situering]]]" class="sec-ref"><bdi class="secno">3.5 </bdi>Objecttype Situering</a> voor detailinformatie.</mark></p>
</section></section>
<section id="objecttypen"><div class="header-wrapper"><h2 id="x3-objecttypen"><bdi class="secno">3. </bdi>Objecttypen</h2><a class="self-link" href="#objecttypen" aria-label="Permalink for Section 3."></a></div>
<section id="objecttype-im_ers_object"><div class="header-wrapper"><h3 id="x3-1-objecttype-im_ers_object"><bdi class="secno">3.1 </bdi>Objecttype IM_ERS_Object</h3><a class="self-link" href="#objecttype-im_ers_object" aria-label="Permalink for Section 3.1"></a></div>
<p><img src="ers-media/IM_ERS_Object.png" alt="" height="444" width="795"></p>
<section data-format="markdown" id="definitie"><div class="header-wrapper"><h4 id="x3-1-1-definitie"><bdi class="secno">3.1.1 </bdi>Definitie</h4><a class="self-link" href="#definitie" aria-label="Permalink for Section 3.1.1"></a></div>
<table>
<thead>
<tr>
<th><strong>Objecttype-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>IM_ERS_Object</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Abstract supertype voor de NEN3610 ErfgoedRegistratieStandaard-objecten.</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>Dit object omvat de benodigde attributen voor identificering conform NEN 3610 en de attributen ten behoeve van het bijhouden van formele historie van de objecten.</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20220701</td>
</tr>
</tbody></table>
</section>
<section data-format="markdown" id="attribuutsoorten"><div class="header-wrapper"><h4 id="x3-1-2-attribuutsoorten"><bdi class="secno">3.1.2 </bdi>Attribuutsoorten</h4><a class="self-link" href="#attribuutsoorten" aria-label="Permalink for Section 3.1.2"></a></div>
<section id="identificatie"><div class="header-wrapper"><h5 id="x3-1-2-1-identificatie"><bdi class="secno">3.1.2.1 </bdi>identificatie</h5><a class="self-link" href="#identificatie" aria-label="Permalink for Section 3.1.2.1"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>identificatie</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>attribuut voor unieke identificatie volgens NEN 3610</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>Door het systeem wordt aan de identificatie een Namespace toegevoegd.<br>Namespace: een unieke verwijzing naar de registratie die de identificatie uitdeelt (de bronhouder). Deze lijst van registraties wordt beheerd binnen de context van NEN 3610.<br><br>Binnen Nederland zal deze namespace vrijwel altijd met ‘NL’ beginnen.<br>Lokaal id: unieke identificatiecode binnen de registratie van de bronhouder. Deze is verplicht omdat een nieuwe aanlevering (update) altijd per object herleidbaar moet zijn naar de eerdere aanlevering.<br><br>Ook records die gegevens over Rijksmonumenten bevatten krijgen de Namespace van de aanleverende partij (betreffende gemeente).</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Identificerend</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="tijdstipregistratie"><div class="header-wrapper"><h5 id="x3-1-2-2-tijdstipregistratie"><bdi class="secno">3.1.2.2 </bdi>tijdstipRegistratie</h5><a class="self-link" href="#tijdstipregistratie" aria-label="Permalink for Section 3.1.2.2"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>tijdstipRegistratie</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Tijdstip waarop deze instantie van het object is opgenomen in de registratie</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>Begindatum en -tijd van de registratie van het object. De begintijd is het moment dat de registratie voor het eerst is aangemaakt.</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20220701</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
</tbody></table>
</section><section id="eindregistratie"><div class="header-wrapper"><h5 id="x3-1-2-3-eindregistratie"><bdi class="secno">3.1.2.3 </bdi>eindRegistratie</h5><a class="self-link" href="#eindregistratie" aria-label="Permalink for Section 3.1.2.3"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>eindRegistratie</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Formele levensduur van het omgevingselement</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>Einddatum en -tijd van de registratie van het object. Zolang de eindtijd niet is ingevuld is de registratie aanwezig en voor gebruik raadpleegbaar.</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20220701</td>
</tr>
<tr>
<td><strong>Kardinaliteit</strong></td>
<td>0..1</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
</tbody></table>
</section></section>
</section>
<section id="objecttype-erfgoedobject"><div class="header-wrapper"><h3 id="x3-2-objecttype-erfgoedobject"><bdi class="secno">3.2 </bdi>Objecttype ErfgoedObject</h3><a class="self-link" href="#objecttype-erfgoedobject" aria-label="Permalink for Section 3.2"></a></div>
<p><img src="ers-media/ErfgoedObject.png" alt="" height="923" width="1349"></p>
<section data-format="markdown" id="definitie-0"><div class="header-wrapper"><h4 id="x3-2-1-definitie"><bdi class="secno">3.2.1 </bdi>Definitie</h4><a class="self-link" href="#definitie-0" aria-label="Permalink for Section 3.2.1"></a></div>
<table>
<thead>
<tr>
<th><strong>Objecttype-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>ErfgoedObject</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Een ErfgoedObject is een fysiek object (bouwwerk, historische aanleg of structuur) met een zekere cultuurhistorische waarde. In het algemeen is sprake van een onroerend of niet-verplaatsbaar karakter.</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>Een ErfgoedOmgeving kan alleen bestaan in combinatie met het (de) bijbehorende ErfgoedObject(en). Er worden verschillende typen omgeving onderscheiden, waarvoor verschillende regelgeving van toepassing kan zijn. Een groep ErfgoedObjecten kan bijvoorbeeld deel uitmaken van een complex . Of één of meer ErfgoedObjecten kunnen op een terrein of binnen een bepaald gebied liggen dat van belang is voor het ErfgoedObject en dat wordt aangeduid als ‘biotoop’.</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
</tbody></table>
</section>
<section data-format="markdown" id="attribuutsoorten-0"><div class="header-wrapper"><h4 id="x3-2-2-attribuutsoorten"><bdi class="secno">3.2.2 </bdi>Attribuutsoorten</h4><a class="self-link" href="#attribuutsoorten-0" aria-label="Permalink for Section 3.2.2"></a></div>
<section id="aardregistratie"><div class="header-wrapper"><h5 id="x3-2-2-1-aardregistratie"><bdi class="secno">3.2.2.1 </bdi>aardRegistratie</h5><a class="self-link" href="#aardregistratie" aria-label="Permalink for Section 3.2.2.1"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>aardRegistratie</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Wijze waarop de cultuurhistorische waarde van het ErfgoedObject beleidsmatig betekenis heeft.<br>Aanlevering verplicht.</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>verwachte waarde: op grond van context is de verwachting dat er nog onbekende cultuurhistorische waarde aanwezig is<br>aanwezige waarde: de waarde is bekend, geïnventariseerd en/of gewaardeerd, maar op dit moment niet als zodanig beschermd<br>beschermde waarde: het ErfgoedObject heeft een in werking zijnde beschermde status (beschermdAls)<br>historische waarde: het ErfgoedObject is in werkelijkheid niet meer aanwezig maar is wel van belang vanwege sporen op locatie of in de structuur van de omgeving</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
</tbody></table>
</section><section id="beschermdals"><div class="header-wrapper"><h5 id="x3-2-2-2-beschermdals"><bdi class="secno">3.2.2.2 </bdi>beschermdAls</h5><a class="self-link" href="#beschermdals" aria-label="Permalink for Section 3.2.2.2"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>beschermdAls</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Beschermde status van het ErfgoedObject<br><br>Verplicht gevuld in combinatie met aardRegistratie=beschermd</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>een ErfgoedObject heeft maximaal 1 beschermde status.<br>Bij de overgang van In procedure naar definitief wordt de aanwijzingsdatum gevuld.<br>Bij NietAanwijzen en Afvoeren wordt de status verwijderd; ook aardRegistratie dient dan te worden aangepast.</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Mogelijk geen waarde</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="beschermddoor"><div class="header-wrapper"><h5 id="x3-2-2-3-beschermddoor"><bdi class="secno">3.2.2.3 </bdi>beschermdDoor</h5><a class="self-link" href="#beschermddoor" aria-label="Permalink for Section 3.2.2.3"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>beschermdDoor</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Bevoegd gezag dat de status toekent<br>Verplicht gevuld in combinatie met aardRegistratie=beschermd</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>wanneer een status wordt 'overgenomen' door het Rijk (wat soms gebeurt bij monumenten) dan ontstaat een situatie van afvoeren van de ene lijst en opvoeren op de andere lijst. De bescherming als Rijksmonument gaat 'boven' de bescherming als Gemeentelijk monument. De betreffende datumvelden worden overschreven zodat deze betrekking hebben op de 'hoogst' beschermde status.</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Mogelijk geen waarde</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="datuminprocedure"><div class="header-wrapper"><h5 id="x3-2-2-4-datuminprocedure"><bdi class="secno">3.2.2.4 </bdi>datumInProcedure</h5><a class="self-link" href="#datuminprocedure" aria-label="Permalink for Section 3.2.2.4"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>datumInProcedure</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Datum waarop voor het object de procedure tot aanwijzing als monument is gestart en de beschermde status in werking treedt</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>dient gevuld indien vanaf de start van de procedure de beschermende werking intreedt</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Mogelijk geen waarde</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="datumaanwijzing"><div class="header-wrapper"><h5 id="x3-2-2-5-datumaanwijzing"><bdi class="secno">3.2.2.5 </bdi>datumAanwijzing</h5><a class="self-link" href="#datumaanwijzing" aria-label="Permalink for Section 3.2.2.5"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>datumAanwijzing</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Datum waarop het object is aangewezen als monument cq de beschermende status in werking treedt</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>verplicht indien sprake is van een beschermende werking</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Mogelijk geen waarde</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="datumnietaanwijzen"><div class="header-wrapper"><h5 id="x3-2-2-6-datumnietaanwijzen"><bdi class="secno">3.2.2.6 </bdi>datumNietAanwijzen</h5><a class="self-link" href="#datumnietaanwijzen" aria-label="Permalink for Section 3.2.2.6"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>datumNietAanwijzen</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Datum waarop als onderdeel van de procedure is besloten tot niet aanwijzen</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>verplicht indien vanaf de start van de procedure de beschermende werking intrad en deze met dit besluit wordt opgeheven</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Mogelijk geen waarde</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="datumafvoeren"><div class="header-wrapper"><h5 id="x3-2-2-7-datumafvoeren"><bdi class="secno">3.2.2.7 </bdi>datumAfvoeren</h5><a class="self-link" href="#datumafvoeren" aria-label="Permalink for Section 3.2.2.7"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>datumAfvoeren</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Datum waarop de beschermde status van het object is opgeheven middels een besluit</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>verplicht indien hiermee de geregistreerde beschermende werking is opgeheven</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Mogelijk geen waarde</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="toelichtingprocedure"><div class="header-wrapper"><h5 id="x3-2-2-8-toelichtingprocedure"><bdi class="secno">3.2.2.8 </bdi>toelichtingProcedure</h5><a class="self-link" href="#toelichtingprocedure" aria-label="Permalink for Section 3.2.2.8"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>toelichtingProcedure</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Aantekening van de beschermde status die is opgeheven met eventueel een toelichting op de reden van beëindiging</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>verplicht in combinatie met datumNietAanwijzen en datumAfvoeren<br>ook te gebruiken om de gegevens van een eerder doorlopen procedure vast te leggen, indien van toepassing</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
<tr>
<td><strong>Mogelijk geen waarde</strong></td>
<td>Ja</td>
</tr>
</tbody></table>
</section><section id="grondslag"><div class="header-wrapper"><h5 id="x3-2-2-9-grondslag"><bdi class="secno">3.2.2.9 </bdi>grondslag</h5><a class="self-link" href="#grondslag" aria-label="Permalink for Section 3.2.2.9"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>
</thead>
<tbody><tr>
<td><strong>Naam</strong></td>
<td>grondslag</td>
</tr>
<tr>
<td><strong>Herkomst</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Definitie</strong></td>
<td>Verwijzing naar het identificerende nummer waarmee dit object is aangewezen als gemeentelijk monument</td>
</tr>
<tr>
<td><strong>Herkomst definitie</strong></td>
<td>ERS</td>
</tr>
<tr>
<td><strong>Toelichting</strong></td>
<td>verwijzing naar het identificerende nr in de landelijke voorziening;<br>verplicht indien het een Gemeentelijk Monument betreft.<br>Het besluit verwijst naar de betreffende percelen (werkingsgebied); die koppeling wordt (vooralsnog) onderhouden in de Wkpb</td>
</tr>
<tr>
<td><strong>Datum opname</strong></td>
<td>20191001</td>
</tr>
<tr>
<td><strong>Indicatie materiële historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Indicatie formele historie</strong></td>
<td>Ja</td>
</tr>
<tr>
<td><strong>Authentiek</strong></td>
<td>Overig</td>
</tr>
</tbody></table>
</section><section id="monumentnummer"><div class="header-wrapper"><h5 id="x3-2-2-10-monumentnummer"><bdi class="secno">3.2.2.10 </bdi>monumentnummer</h5><a class="self-link" href="#monumentnummer" aria-label="Permalink for Section 3.2.2.10"></a></div>
<table>
<thead>
<tr>
<th><strong>Attribuutsoort-eigenschap</strong></th>
<th><strong>Waarde</strong></th>
</tr>