-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5815.xml
1335 lines (1335 loc) · 71.4 KB
/
5815.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.newhaveneast">beinecke.newhaveneast</recordid>
<otherrecordid localtype="BIB">12407527</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the New Haven East Association Records </titleproper>
<titleproper localtype="filing">New Haven East Association Records</titleproper>
<author>by Beinecke Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>2015</date>
<num>GEN MSS 1295</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">12407527</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-11</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 12 (Art)</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:06:19-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:06</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/5815" level="collection">
<did>
<unittitle>New Haven East Association records</unittitle>
<unitid>GEN MSS 1295</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>In English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5.2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">11 boxes + 1 art</physdesc>
<unitdatestructured altrender="1725-1903"
calendar="gregorian"
era="ce"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1725">1725</fromdate>
<todate standarddate="1903">1903</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_19b04246ec507b94c094e3fe4edbe9b3">The collection contains bound volumes of manuscript meeting minutes for the New Haven East Association and the Consociation of the County of New Haven, New Haven East Consociation, Association of the County of New-Haven, and New Haven Union Association of Congregational Ministers. Also present are other records and papers related to the business of the association, its member churches and foreign missions, its mutual improvement societies, and a painted metal box that formerly held the records.</abstract>
<origination label="Creator">
<corpname>
<part localtype="agent_corporate_entity">New Haven East Association (Conn.)</part>
</corpname>
</origination>
<origination label="Creator">
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Association of the County of New-Haven (Conn.)</part>
</corpname>
</origination>
<origination label="Creator">
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Consociation of the County of New-Haven (Conn.)</part>
</corpname>
</origination>
<origination label="Creator">
<corpname rules="aacr">
<part localtype="agent_corporate_entity">New Haven East Consociation (Conn.)</part>
</corpname>
</origination>
<origination label="Creator">
<corpname source="local">
<part localtype="agent_corporate_entity">New Haven Union Association of Congregational Ministers</part>
</corpname>
</origination>
</did>
<acqinfo id="aspace_acq">
<head>Immediate Source of Acquisition</head>
<p>Gift of the New Haven East Association, 1887-1903.</p>
</acqinfo>
<accessrestrict id="aspace_arest">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_urest">
<head>Conditions Governing Use</head>
<p>The New Haven East Association Records is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_cite">
<head>Preferred Citation</head>
<p>New Haven East Association Records. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_pi">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>The records in this collection had been arranged by the association before being transferred to the Yale University Library. That arrangement was retained when the records were rehoused in 2015.</p>
<p>This collection includes materials previously identified by the following call number: MS Vault New Haven East</p>
</processinfo>
<relatedmaterial id="aspace_relma">
<head>Associated Materials</head>
<p>New Haven West Association Records (GEN MSS 1296), Beinecke Rare Book and Manuscript Library.</p>
</relatedmaterial>
<bioghist id="aspace_bh1">
<head>New Haven East Association</head>
<p>The Association of the County of New-Haven, an organization of Connecticut Congregational ministers, was formed in 1709 following a meeting of twelve ministers and four church laymen called by the colonial legislature. Held in Saybrook, Connecticut, the meeting resulted in the "Saybrook Platform," a new constitution for the Congregational Church in Connecticut, which gave associations the responsibility to examine candidates for the ministry, and to oversee the behavior of the ministers. In 1787 the association was divided to form the New Haven East Association and the New Haven West Association, with the course of the Quinnipiac River as the geographical line. The two organizations were again united by unanimous resolution in 1893 to form the New Haven Union Association of Congregational Ministers in Connecticut. That organization merged with the New Haven Central Association in 1903.</p>
<p>The Consociation of the County of New-Haven, an organization of Congregational churches and pastors also formed in 1709, was devoted to the management of ecclesiastical discipline. That organization, with a membership composed of both church members and pastors, could impose discipline on specific churches and judge disputes that arose. It later evolved into two separate bodies called the New Haven East Consociation (established in 1787) and the Consociation of the Western District of New Haven County (established in 1799).</p>
</bioghist>
<scopecontent id="aspace_sc">
<head>Scope and Contents</head>
<p>The collection contains bound volumes of manuscript meeting minutes for the New Haven East Association and the Consociation of the County of New Haven, New Haven East Consociation, Association of the County of New-Haven, and New Haven Union Association of Congregational Ministers. Also present are other records and papers related to the business of the association, its member churches and foreign missions, its mutual improvement societies, and a painted metal box that formerly held the records.</p>
</scopecontent>
<arrangement id="aspace_arr1">
<head>Arrangement</head>
<p>Organized into three series: I. Minute Books, 1737-1903. II. Papers of Regional Churches, 1758-1850. III. Other Papers, 1725-1903.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Clergy</part>
<part localtype="geographic">Connecticut</part>
</subject>
<subject source="local">
<part localtype="topical">Congregationalism</part>
<part localtype="topical">Clergy</part>
</subject>
<geogname source="local">
<part localtype="geographic">New Haven County (Conn.)</part>
<part localtype="topical">Religious life and customs</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Boxes (containers)</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Minute books</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">New Haven County</part>
<part localtype="temporal">18th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Minute books</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">New Haven County</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Minute books</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">New Haven County</part>
<part localtype="temporal">20th Century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Clergy</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">New Haven County</part>
<part localtype="temporal">18th century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Clergy</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">New Haven County</part>
<part localtype="temporal">19th century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Clergy</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">New Haven County</part>
<part localtype="temporal">20th Century</part>
</occupation>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Association of the County of New-Haven (Conn.)</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Consociation of the County of New-Haven (Conn.)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">New Haven East Association (Conn.)</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">New Haven East Consociation (Conn.)</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">New Haven Union Association of Congregational Ministers</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2353262"
id="aspace_s1"
level="series">
<did>
<unittitle>Minute Books</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.04</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="1737-1903" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1737">1737</fromdate>
<todate standarddate="1903">1903</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_073b44b9f9e927036d62443e640b7bd7">
<head>Arrangement</head>
<p>Series I is organized into five subseries: Consociation of the County of New Haven, New Haven East Consociation, Association of the County of New-Haven, New Haven East Association, and New Haven Union Association of Congregational Ministers.</p>
</arrangement>
<scopecontent id="aspace_9b3ee3c1edf6339511c91d9f1b56af4a">
<head>Scope and Contents</head>
<p>The series contains nine bound volumes of manuscript meeting minutes.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2353265"
id="aspace_d0e174"
level="subseries">
<did>
<unittitle>Consociation of the County of New Haven</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2353305"
id="aspace_s1d0e192"
level="file">
<did>
<unittitle>Vol. II. Meeting minutes</unittitle>
<unitdatestructured altrender="1758-1785" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1785">1785</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250839 /locations/9"
containerid="39002104774931"
id="aspace_s1d0e192_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_s1d0e192_c2"
localtype="folder"
parent="aspace_s1d0e192_c1">1</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2353266"
id="aspace_d0e216"
level="subseries">
<did>
<unittitle>New Haven East Consociation</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2353306"
id="aspace_d0e234"
level="file">
<did>
<unittitle>Meeting minutes</unittitle>
<unitdatestructured altrender="1803-1823" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1803">1803</fromdate>
<todate standarddate="1823">1823</todate>
</daterange>
</unitdatestructured>
<physloc id="aspace_050777598d1154bea38177e83439461c">See: Box 1, folder 6</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353307"
id="aspace_d0e256"
level="file">
<did>
<unittitle>Meeting minutes</unittitle>
<unitdatestructured altrender="1824-1838" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1824">1824</fromdate>
<todate standarddate="1838">1838</todate>
</daterange>
</unitdatestructured>
<physloc id="aspace_94bc2299004fea9ffd04d95d6cbdb60f">See: Box 1, folder 7</physloc>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2353267"
id="aspace_d0e278"
level="subseries">
<did>
<unittitle>Association of the County of New-Haven</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2353308"
id="aspace_s1d0e296"
level="file">
<did>
<unittitle>Meeting minutes (original)</unittitle>
<unitdatestructured altrender="1737-1757" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1737">1737</fromdate>
<todate standarddate="1757">1757</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250839 /locations/9"
containerid="39002104774931"
id="aspace_s1d0e296_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_s1d0e296_c2"
localtype="folder"
parent="aspace_s1d0e296_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353309"
id="aspace_s1d0e320"
level="file">
<did>
<unittitle>Meeting minutes, 1737-1757 (manuscript copy made in the nineteenth century)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/250839 /locations/9"
containerid="39002104774931"
id="aspace_s1d0e320_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_s1d0e320_c2"
localtype="folder"
parent="aspace_s1d0e320_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353310"
id="aspace_s1d0e344"
level="file">
<did>
<unittitle>Vol. III. Meeting minutes</unittitle>
<unitdatestructured altrender="1758-1786" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1786">1786</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250839 /locations/9"
containerid="39002104774931"
id="aspace_s1d0e344_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_s1d0e344_c2"
localtype="folder"
parent="aspace_s1d0e344_c1">4</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2353268"
id="aspace_d0e368"
level="subseries">
<did>
<unittitle>New Haven East Association</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2353311"
id="aspace_s1d0e386"
level="file">
<did>
<unittitle>Vol. IV. Meeting minutes</unittitle>
<unitdatestructured altrender="1786-1802" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1786">1786</fromdate>
<todate standarddate="1802">1802</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250839 /locations/9"
containerid="39002104774931"
id="aspace_s1d0e386_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_s1d0e386_c2"
localtype="folder"
parent="aspace_s1d0e386_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353312"
id="aspace_s1d0e410"
level="file">
<did>
<unittitle>Vol. V. Meeting minutes</unittitle>
<unitdatestructured altrender="1803-1823" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1803">1803</fromdate>
<todate standarddate="1823">1823</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250840 /locations/9"
containerid="39002104774949"
id="aspace_s1d0e410_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_s1d0e410_c2"
localtype="folder"
parent="aspace_s1d0e410_c1">6</container>
</did>
<scopecontent id="aspace_479cacc60559d890283050b3729e87f9">
<head>Scope and Contents</head>
<p>Volume also contains meeting minutes of the New Haven East Consociation (1803-1823)</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2353313"
id="aspace_s1d0e437"
level="file">
<did>
<unittitle>Vol. VI. Meeting minutes</unittitle>
<unitdatestructured altrender="1823-1838" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1823">1823</fromdate>
<todate standarddate="1838">1838</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250840 /locations/9"
containerid="39002104774949"
id="aspace_s1d0e437_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_s1d0e437_c2"
localtype="folder"
parent="aspace_s1d0e437_c1">7</container>
</did>
<scopecontent id="aspace_a145b57449e0e4b3697b1d0cd0243ee6">
<head>Scope and Contents</head>
<p>Volume also contains meeting minutes of the New Haven East Consociation (1824-1838)</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2353314"
id="aspace_s1d0e464"
level="file">
<did>
<unittitle>Meeting minutes</unittitle>
<unitdatestructured altrender="1878-1893" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878">1878</fromdate>
<todate standarddate="1893">1893</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250840 /locations/9"
containerid="39002104774949"
id="aspace_s1d0e464_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_s1d0e464_c2"
localtype="folder"
parent="aspace_s1d0e464_c1">8</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2353269"
id="aspace_d0e488"
level="subseries">
<did>
<unittitle>New Haven Union Association of Congregational Ministers</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2353315"
id="aspace_s1d0e506"
level="file">
<did>
<unittitle>Meeting minutes</unittitle>
<unitdatestructured altrender="1893-1903" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893">1893</fromdate>
<todate standarddate="1903">1903</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250841 /locations/9"
containerid="39002104774956"
id="aspace_s1d0e506_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_s1d0e506_c2"
localtype="folder"
parent="aspace_s1d0e506_c1">9</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2353263"
id="aspace_s2"
level="series">
<did>
<unittitle>Papers of Regional Churches</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="1758-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_607fb12e482aaf6fdf9802a3a2fe5b31">
<head>Arrangement</head>
<p>Series is arranged in alphabetical order by town.</p>
</arrangement>
<scopecontent id="aspace_e977c183c752406f84d028004948f39a">
<head>Scope and Contents</head>
<p>Series II contains papers related to churches in towns within the New Haven East Association.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2353270"
id="aspace_s2d0e561"
level="file">
<did>
<unittitle>Branford</unittitle>
<unitdatestructured altrender="1795-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1795">1795</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e561_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e561_c2"
localtype="folder"
parent="aspace_s2d0e561_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353271"
id="aspace_s2d0e585"
level="file">
<did>
<unittitle>Cheshire</unittitle>
<unitdatestructured altrender="1760-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1760">1760</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e585_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e585_c2"
localtype="folder"
parent="aspace_s2d0e585_c1">11-15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353272"
id="aspace_s2d0e609"
level="file">
<did>
<unittitle>Durham</unittitle>
<unitdatestructured altrender="1794-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1794">1794</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e609_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e609_c2"
localtype="folder"
parent="aspace_s2d0e609_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353273"
id="aspace_s2d0e633"
level="file">
<did>
<unittitle>East Haven</unittitle>
<unitdatestructured altrender="1816-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1816">1816</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e633_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e633_c2"
localtype="folder"
parent="aspace_s2d0e633_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353274"
id="aspace_s2d0e657"
level="file">
<did>
<unittitle>Fair Haven</unittitle>
<unitdatestructured altrender="1844-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1844">1844</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e657_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e657_c2"
localtype="folder"
parent="aspace_s2d0e657_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353275"
id="aspace_s2d0e681"
level="file">
<did>
<unittitle>Guilford and East Guilford</unittitle>
<unitdatestructured altrender="1841-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1841">1841</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e681_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e681_c2"
localtype="folder"
parent="aspace_s2d0e681_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353276"
id="aspace_s2d0e705"
level="file">
<did>
<unittitle>Hamden and Mount Carmel</unittitle>
<unitdatestructured altrender="1762-1771" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1762">1762</fromdate>
<todate standarddate="1771">1771</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e705_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e705_c2"
localtype="folder"
parent="aspace_s2d0e705_c1">20-21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353277"
id="aspace_s2d0e729"
level="file">
<did>
<unittitle>Madison</unittitle>
<unitdatestructured altrender="1791-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1791">1791</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250830 /locations/9"
containerid="39002104774964"
id="aspace_s2d0e729_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_s2d0e729_c2"
localtype="folder"
parent="aspace_s2d0e729_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353278"
id="aspace_s2d0e753"
level="file">
<did>
<unittitle>Meriden</unittitle>
<unitdatestructured altrender="1767-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1767">1767</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250831 /locations/9"
containerid="39002104774972"
id="aspace_s2d0e753_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_s2d0e753_c2"
localtype="folder"
parent="aspace_s2d0e753_c1">23-26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353279"
id="aspace_s2d0e777"
level="file">
<did>
<unittitle>Milford</unittitle>
<unitdatestructured altrender="1780" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1780">1780</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250831 /locations/9"
containerid="39002104774972"
id="aspace_s2d0e777_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_s2d0e777_c2"
localtype="folder"
parent="aspace_s2d0e777_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353280"
id="aspace_s2d0e801"
level="file">
<did>
<unittitle>North Branford</unittitle>
<unitdatestructured altrender="1809-1836" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1809">1809</fromdate>
<todate standarddate="1836">1836</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250831 /locations/9"
containerid="39002104774972"
id="aspace_s2d0e801_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_s2d0e801_c2"
localtype="folder"
parent="aspace_s2d0e801_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353281"
id="aspace_s2d0e825"
level="file">
<did>
<unittitle>Northbury</unittitle>
<unitdatestructured altrender="1758-1765" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1765">1765</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250831 /locations/9"
containerid="39002104774972"
id="aspace_s2d0e825_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_s2d0e825_c2"
localtype="folder"
parent="aspace_s2d0e825_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353282"
id="aspace_s2d0e849"
level="file">
<did>
<unittitle>Northford</unittitle>
<unitdatestructured altrender="1788-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1788">1788</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250831 /locations/9"
containerid="39002104774972"
id="aspace_s2d0e849_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_s2d0e849_c2"
localtype="folder"
parent="aspace_s2d0e849_c1">30-34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353283"
id="aspace_d0e873"
level="file">
<did>
<unittitle>North Guilford</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2353316"
id="aspace_s2d0e891"
level="file">
<did>
<unittitle>Papers</unittitle>
<unitdatestructured altrender="1760-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1760">1760</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250832 /locations/9"
containerid="39002104774980"
id="aspace_s2d0e891_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_s2d0e891_c2"
localtype="folder"
parent="aspace_s2d0e891_c1">35-39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353317"
id="aspace_s2d0e915"
level="file">
<did>
<unittitle>Papers relating to the case of Rev. A. C. Collins</unittitle>
<unitdatestructured altrender="1789-1793" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1789">1789</fromdate>
<todate standarddate="1793">1793</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250832 /locations/9"
containerid="39002104774980"
id="aspace_s2d0e915_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_s2d0e915_c2"
localtype="folder"
parent="aspace_s2d0e915_c1">40</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2353284"
id="aspace_s2d0e939"
level="file">
<did>
<unittitle>North Haven</unittitle>
<unitdatestructured altrender="1762-1785" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1762">1762</fromdate>
<todate standarddate="1785">1785</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250832 /locations/9"
containerid="39002104774980"
id="aspace_s2d0e939_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_s2d0e939_c2"
localtype="folder"
parent="aspace_s2d0e939_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353285"
id="aspace_s2d0e963"
level="file">
<did>
<unittitle>North Madison</unittitle>
<unitdatestructured altrender="1785-1837" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1785">1785</fromdate>
<todate standarddate="1837">1837</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250832 /locations/9"
containerid="39002104774980"
id="aspace_s2d0e963_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_s2d0e963_c2"
localtype="folder"
parent="aspace_s2d0e963_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353286"
id="aspace_s2d0e987"
level="file">
<did>
<unittitle>South Durham</unittitle>
<unitdatestructured altrender="1847-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1847">1847</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250832 /locations/9"
containerid="39002104774980"
id="aspace_s2d0e987_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_s2d0e987_c2"
localtype="folder"
parent="aspace_s2d0e987_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353287"
id="aspace_s2d0e1011"
level="file">
<did>
<unittitle>Wallingford</unittitle>
<unitdatestructured altrender="1758-1832" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1832">1832</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250832 /locations/9"
containerid="39002104774980"
id="aspace_s2d0e1011_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_s2d0e1011_c2"
localtype="folder"
parent="aspace_s2d0e1011_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2353288"
id="aspace_s2d0e1035"
level="file">
<did>
<unittitle>Woodbridge</unittitle>
<unitdatestructured altrender="1765-1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1765">1765</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/250832 /locations/9"
containerid="39002104774980"
id="aspace_s2d0e1035_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_s2d0e1035_c2"
localtype="folder"
parent="aspace_s2d0e1035_c1">45</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2353264"
id="aspace_s3"
level="series">
<did>
<unittitle>Other Papers</unittitle>
<unitid>Series III</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.79</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured altrender="1725-1903" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1725">1725</fromdate>
<todate standarddate="1903">1903</todate>
</daterange>