-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path958.xml
12157 lines (12157 loc) · 710 KB
/
958.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.jwjfile">beinecke.jwjfile</recordid>
<otherrecordid localtype="BIB">11955359</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the James Weldon Johnson Collection Files
</titleproper>
<titleproper localtype="filing">Johnson (James Weldon) Collection Files</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>May 1998</date>
<num>JWJ MSS 114</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">11955359</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-21</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="30">30</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="472">472</num> digital files.</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>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</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>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-27T23:03:07-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Monday January 27, 2025 at 23:03</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/958" level="collection">
<did>
<unittitle>James Weldon Johnson collection files</unittitle>
<unitid>JWJ MSS 114</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8.54</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">21 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1809">1809</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_b1c466df57c726232c7c787cb601e7f9">The James Weldon Johnson Collection Files contain manuscript correspondence, literary works and other documents relating to African Americans, dating from 1809 to 1979. The collection contains several letters to James Weldon Johnson from aspiring poets asking for feedback on their writing. Correspondence sent to Langston Hughes, Harold Jackman, Grace Nail Johnson, and Carl Van Vechten is also prominent in the collection. The collection includes broadway actress Rose McClendon's scripts used when performing in various productions. Some early documents relate to slavery; these include bills of sale and an estate inventory dating from 1856. Writings by Sterling Allen Brown, George Washington Carver, Ralph Ellison, and J. Saunders Redding can be found in the collection. African-American women authors are also represented; most notably in writings and correspondence of Elizabeth Ross Haynes and Margaret Walker.</abstract>
</did>
<acqinfo id="aspace_d3baab0783a08615eb47c4a5c9d776ef">
<head>Immediate Source of Acquisition</head>
<p>Acquired from various sources. For more information see catalog cards filed in the collection.</p>
</acqinfo>
<accessrestrict id="aspace_eca2443f5fd407154f79f3ea26566f65">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_b0eada206f81dff06df1ffdd9d28acd9">
<head>Conditions Governing Use</head>
<p>The James Weldon Johnson Collection Files 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_135b0b2818516a1bc121b861fd9a7bb1">
<head>Preferred Citation</head>
<p>[Name of Item(s)]. James Weldon Johnson Collection in the Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_15befecb2fd1cc4d7f0e03bea11ab308">
<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 [as they are acquired], and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This finding aid was produced from a previously existing card set in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained.</p>
<p>This collection includes materials previously identified by the following call numbers: Uncat JWJ Files, JWJ MSS Small Collections.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<scopecontent id="aspace_814542ed8392c043670a02004a053256">
<head>Scope and Contents</head>
<p>The James Weldon Johnson Collection Files contain letters, literary works and other documents arranged alphabetically by the name of author, recipient, or subject, and dating from 1809 to 1979.</p>
<p>The Files contain several letters, accompanied by poems, that were sent to James Weldon Johnson. Correspondence sent to Langston Hughes, Harold Jackman, Grace Nail Johnson and Carl Van Vechten is also prominent in the Files. Broadway actress Rose McClendon's scripts, used when performing in various productions, can also be found in Files.</p>
<p>Some early documents relate to slavery. These include correspondence and related materials dating from 1809 concerning Samuel Osborn who was accused of cutting off his slave's ear. The Files also include bills of sale and an estate inventory, which includes a list of slaves, dating from 1856.</p>
<p>Writings by a number of prominent twentieth century African-American intellectuals are included in the Files, such as Sterling Allen Brown, George Washington Carver, Ralph Ellison, and J. Saunders Redding.</p>
<p>Prominent African-American women authors are also represented, as seen in documents relating to Elizabeth Ross Haynes and Margaret Walker.</p>
</scopecontent>
<arrangement id="aspace_306d5ff17f640d259fa620641ae019ee">
<head>Arrangement</head>
<p>Arranged alphabetically by the name of author, recipient, or subject.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">African American authors</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">African American poets</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001927"
source="lcsh">
<part localtype="topical">African American women authors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85002009"
source="lcsh">
<part localtype="topical">African Americans in literature</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004389"
source="lcsh">
<part localtype="topical">American poetry</part>
<part localtype="topical">African American authors</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Slave bills of sale</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2010113223"
source="lcsh">
<part localtype="topical">Slave trade</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85123326"
source="lcsh">
<part localtype="topical">Slavery</part>
<part localtype="geographic">United States</part>
</subject>
<occupation source="local_beinecke">
<part localtype="occupation">Authors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Poets</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">Brown, Sterling A., 1901-1989</part>
</persname>
<persname>
<part localtype="agent_person">Carver, George Washington, 1864?-1943</part>
</persname>
<persname>
<part localtype="agent_person">Ellison, Ralph, 1914-1994</part>
</persname>
<persname>
<part localtype="agent_person">Haynes, Elizabeth Ross, 1883-1953</part>
</persname>
<persname>
<part localtype="agent_person">Jackman, Harold, 1901-1961</part>
</persname>
<persname>
<part localtype="agent_person">Johnson, Grace Nail, 1885-1976</part>
</persname>
<persname>
<part localtype="agent_person">Johnson, James Weldon, 1871-1938</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">McClendon, Rose, 1884-1936</part>
</persname>
<persname>
<part localtype="agent_person">Redding, J. Saunders (Jay Saunders), 1906-1988</part>
</persname>
<persname>
<part localtype="agent_person">Van Vechten, Carl, 1880-1964</part>
</persname>
<persname>
<part localtype="agent_person">Walker, Margaret, 1915-1998</part>
</persname>
<persname>
<part localtype="agent_person">Douglass, Frederick, 1818-1895</part>
</persname>
<persname>
<part localtype="agent_person">Dumas, Alexandre, 1802-1870</part>
</persname>
<persname>
<part localtype="agent_person">Dunbar, Paul Laurence, 1872-1906</part>
</persname>
<persname>
<part localtype="agent_person">Johnson, Georgia Douglas, 1886-1966</part>
</persname>
<persname rules="local" source="local">
<part localtype="agent_person">Jones, LeRoi</part>
</persname>
<persname>
<part localtype="agent_person">Washington, Booker T., 1856-1915</part>
</persname>
<persname>
<part localtype="agent_person">Baraka, Amiri, 1934-2014</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/331804"
id="ref10"
level="series">
<did>
<unittitle>"A"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/331805"
id="ref11"
level="file">
<did>
<unittitle>Adams, Charles Francis Sr.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/331806"
id="ref12"
level="file">
<did>
<unittitle>1 autograph letter, signed, to unidentified correspondent</unittitle>
<unitdatestructured altrender="1861" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1861">1861</fromdate>
<todate standarddate="1861">1861</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331807"
id="ref13"
level="file">
<did>
<unittitle>1 autograph letter, signed, to F. W. Bird</unittitle>
<unitdatestructured altrender="1854" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1854">1854</fromdate>
<todate standarddate="1854">1854</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/331808"
id="ref14"
level="file">
<did>
<unittitle>Adelman, Lynn, "James Weldon Johnson: A Study in Negro Leadership," typescript, carbon, senior thesis (B.A.), History Department, Princeton University</unittitle>
<unitdatestructured altrender="1961 April 5" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331809"
id="ref15"
level="file">
<did>
<unittitle>Aldridge, Ira F., 2 autograph letters, signed, to unidentified correspondents</unittitle>
<unitdatestructured altrender="1867" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1867">1867</fromdate>
<todate standarddate="1867">1867</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331810"
id="ref16"
level="file">
<did>
<unittitle>Alexander, Charles</unittitle>
</did>
<relatedmaterial id="aspace_342d68a8a575460750c7ba00f4059223">
<head>Related Archival Materials note</head>
<p>See: Garrison, Francis J.</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/331811"
id="ref18"
level="file">
<did>
<unittitle>Alexander, Mrs. John W., excerpts of letter to Prentiss Taylor</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331812"
id="ref19"
level="file">
<did>
<unittitle>Alexander, Lewis, "Southland," autograph manuscript, signed, poem of two 8-line stanzas</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331813"
id="ref20"
level="file">
<did>
<unittitle>Allen, George Leonard, poems, autograph manuscript, signed</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">7</container>
</did>
<scopecontent id="aspace_9b0bd3db20d9956ae3d64636ec0f487c">
<head>Scope and Contents</head>
<p>Poems include: "The 'Runt' Strikes Back," "Vision," "Ballade of Nordic Ideals," "Futility," "Portrait," "A Negro Salutes the Flay," "Twilight Fancy."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331814"
id="ref22"
level="file">
<did>
<unittitle>Andrew, John Albion, 4 autograph letters, signed, to Col. G. D. Wells, Col. Tompkins, and R. Fletcher</unittitle>
<unitdatestructured altrender="1855" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1855">1855</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1861-1863" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1861">1861</fromdate>
<todate standarddate="1863">1863</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331815"
id="ref23"
level="file">
<did>
<unittitle>Anthony, Helen B., "Two Worlds," short story, typescript, original</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">9</container>
</did>
<scopecontent id="aspace_211cfdafe0cd7e341d7bade94ddb7e8f">
<head>Scope and Contents</head>
<p>Accompanied by typed excerpts from an untitled short story.</p>
<p>Removed from Anthony's letter to James Weldon Johnson, August 14, 1934.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331816"
id="ref25"
level="file">
<did>
<unittitle>Atlanta University, documents</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1927-1937" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1937">1937</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">10-11</container>
</did>
<scopecontent id="aspace_c015789d403a2bd3ead5b3932acb029b">
<head>Scope and Contents</head>
<p>Contains: President Myron Winslow Adams' reports to the Trustees, 1927-1929, typescript, carbon; Ink sketch of property owned by Atlanta University, undated; Miscellaneous reports and statements concerning the Board of Trustees, etc., typescripts, originals and carbons, 1929-1937. Also includes list of Atlanta University graduates and ex-students in the New York City vicinity, 'confidential report' containing summary of critical opinions on Atlanta University presidential candidates</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/331817"
id="ref28"
level="series">
<did>
<unittitle>"B"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/331818"
id="ref29"
level="file">
<did>
<unittitle>Bacon, Rev. B. C., 1 autograph letter, signed, to David T. Kimball</unittitle>
<unitdatestructured altrender="1834 September 12"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1834">1834</fromdate>
<todate standarddate="1834">1834</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331819"
id="ref30"
level="file">
<did>
<unittitle>Barclay, Arthur, 1 typed letter, signed, to T. McCants Stewart</unittitle>
<unitdatestructured altrender="1910 May 30" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1910">1910</fromdate>
<todate standarddate="1910">1910</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331820"
id="ref31"
level="file">
<did>
<unittitle>Barnett, Claude A., 1 typed letter, signed, to Ernest Hemby</unittitle>
<unitdatestructured altrender="1931 June 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1931-06-09">1931 June 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">14</container>
</did>
<relatedmaterial id="aspace_9e729fa33adffc2aa88e7367676a0442">
<head>Related Archival Materials note</head>
<p>See also: Carver, George Washington</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/331821"
id="ref33"
level="file">
<did>
<unittitle>Barth, Richmond, 1 autograph letter, signed, to Thomas Rutherford</unittitle>
<unitdatestructured altrender="1940 November 11"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331822"
id="ref34"
level="file">
<did>
<unittitle>Batten, Edward A., "To the Creator of Lasca," poem, typescript. Poem dedicated "to the author of <title localtype="simple" render="italic">
<part>Nigger Heaven</part>
</title>"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">16</container>
</did>
<scopecontent id="aspace_1c2c6c3d23a81820e318c7975f406cd0">
<head>Scope and Contents</head>
<p>Removed from envelope addressed to Carl Van Vechten, June 1936.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331823"
id="ref36"
level="file">
<did>
<unittitle>Battle, Effie T., poems, typescripts, signed</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">17</container>
</did>
<scopecontent id="aspace_d53afad790c03a24917f49185de79fe5">
<head>Scope and Contents</head>
<p>Poems include: "Mother Nature Takes a Hand," "To a Violet."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3246555"
id="aspace_41665989b5c52227a65bc5d6c907ef36"
level="file">
<did>
<unittitle>Bearden, Romare</unittitle>
</did>
<processinfo id="aspace_ea32b9bae0a4a21216d3e55637e50827">
<head>Processing Information</head>
<p>The items in Box 19 were moved from JWJ Small Collections.</p>
</processinfo>
<c altrender="/repositories/11/archival_objects/3246558"
id="aspace_0349e1c450447cd38a8d256ef2185b93"
level="file">
<did>
<unittitle>1 autograph letter, signed, to Caresse</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/372463 /locations/9"
containerid="39002141270216"
id="aspace_0349e1c450447cd38a8d256ef2185b93_c1"
label="Mixed Materials"
localtype="box">19</container>
<container id="aspace_0349e1c450447cd38a8d256ef2185b93_c2"
localtype="folder"
parent="aspace_0349e1c450447cd38a8d256ef2185b93_c1">396</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3246559"
id="aspace_04c7bc216a5de16b6492493b1cc46ee0"
level="file">
<did>
<unittitle>"Romare Bearden," exhibition circular with colorprint, inscribed to "Mrs. Johnson"</unittitle>
<unitdatestructured altrender="October 1967" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1967-10">October 1967</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/372463 /locations/9"
containerid="39002141270216"
id="aspace_04c7bc216a5de16b6492493b1cc46ee0_c1"
label="Mixed Materials"
localtype="box">19</container>
<container id="aspace_04c7bc216a5de16b6492493b1cc46ee0_c2"
localtype="folder"
parent="aspace_04c7bc216a5de16b6492493b1cc46ee0_c1">397</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3246560"
id="aspace_201b57ddfbf4b6391b7c4105edf62fc4"
level="file">
<did>
<unittitle>Untitled, autograph manuscript essay concerning Bearden's "The Passion"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/372463 /locations/9"
containerid="39002141270216"
id="aspace_201b57ddfbf4b6391b7c4105edf62fc4_c1"
label="Mixed Materials"
localtype="box">19</container>
<container id="aspace_201b57ddfbf4b6391b7c4105edf62fc4_c2"
localtype="folder"
parent="aspace_201b57ddfbf4b6391b7c4105edf62fc4_c1">398</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/331824"
id="ref38"
level="file">
<did>
<unittitle>Beecher, Henry Ward, 1 autograph letter, signed, to unidentified correspondent</unittitle>
<unitdatestructured altrender="1856 November 29"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1856">1856</fromdate>
<todate standarddate="1856">1856</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331825"
id="ref39"
level="file">
<did>
<unittitle>Bennett, Gwendolyn B., 5 autograph letters and 1 typed letter, signed, to Harold Jackman</unittitle>
<unitdatestructured altrender="1925-26" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1926">1926</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">19</container>
<daoset altrender="/repositories/11/digital_objects/277442">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16867529"
identifier="oid:16867529"
linktitle="43 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16867686/full/!150,150/0/default.jpg"
identifier="oid:16867529"
linktitle="[Envelope Front recto]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16867529"
identifier="oid:16867529"
linktitle="[Envelope Front recto]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Bennett, Gwendolyn B., 5 autograph letters and 1 typed letter, signed, to Harold Jackman</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331826"
id="ref40"
level="file">
<did>
<unittitle>Bethea, Ednah, poems, typescripts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">20</container>
</did>
<scopecontent id="aspace_c5d71e9deca633b86dd7ccf488a3f212">
<head>Scope and Contents</head>
<p>Poems include: "Spring," "Dawn," "Night," "Life." Also included is an untitled poem with the first line "Why do I write? Is it passion, love?"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331827"
id="ref42"
level="file">
<did>
<unittitle>Bethune, Mary McLeod, 1 typed letter to the Spingarn Medal Committee of the National Association for the Advancement of Colored People, copy</unittitle>
<unitdatestructured altrender="1935 July 23" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">21</container>
<daoset altrender="/repositories/11/digital_objects/185322">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/31921665"
identifier="oid:31921665"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/31921666/full/!150,150/0/default.jpg"
identifier="oid:31921665"
linktitle="2 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/31921665"
identifier="oid:31921665"
linktitle="2 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Bethune, Mary McLeod, 1 typed letter to the Spingarn Medal Committee of the National Association for the Advancement of Colored People, copy</p>
</descriptivenote>
</daoset>
</did>
<relatedmaterial id="aspace_59251dd94929c3a5fe8443ab9927c238">
<head>Related Archival Materials note</head>
<p>See also: Sottong, Agnes M.</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/331828"
id="ref44"
level="file">
<did>
<unittitle>Blackburn, Alfred D., poems, autograph manuscript, signed</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">22</container>
</did>
<scopecontent id="aspace_774c078987ac5d70676c626c81820a29">
<head>Scope and Contents</head>
<p>Poems include: "To Jeanne Paltier," "To James Weldon Johnson: The Master's Violin."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331829"
id="ref46"
level="file">
<did>
<unittitle>Blooah, Charles G., "The War Title of Kaeweledjikpwamo, Greatest of Djabo Warriors Who Resided in Nimiah. He Died in About the Year 1900"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">23</container>
</did>
<scopecontent id="aspace_bbd31986358bf42b5a348481bb5672cc">
<head>Scope and Contents</head>
<p>Poem, in two parts: "The March to the Sea" and "Warrior, Thou Hunger." Includes typescript of Djabo translation.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331830"
id="ref48"
level="file">
<did>
<unittitle>Brandt, Barbara, 1 autograph letter, signed, to James Weldon Johnson, includes poems</unittitle>
<unitdatestructured altrender="1930 March 15" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1930">1930</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331831"
id="ref49"
level="file">
<did>
<unittitle>Brandt, Zelma, poem, untitled poem with first line: "Sisters and brothers do not weep!", autograph manuscript copy, signed</unittitle>
<unitdatestructured altrender="1938 June 28" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1938">1938</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331832"
id="ref50"
level="file">
<did>
<unittitle>Brasher, Juliette, "The Life of Mr. Johnson," graduation paper, International School, Detroit, Michigan</unittitle>
<unitdatestructured altrender="1935 December 30"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">26</container>
</did>
<scopecontent id="aspace_bb9f358e52f62368b963bf4c30a221c1">
<head>Scope and Contents</head>
<p>Includes an autograph letter, signed, from Brasher to James Weldon Johnson.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331833"
id="ref52"
level="file">
<did>
<unittitle>Bright, John, 2 letters to William Hicks, Sir Joshua Wolmsly</unittitle>
<unitdatestructured altrender="1857" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1857">1857</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1860" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860">1860</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331834"
id="ref53"
level="file">
<did>
<unittitle>Brown, Francis J., outline for "Our Racial and National Minorities," typescript, carbon, with author's manuscript corrections and mimeographed list of topics sent to James Weldon Johnson concerning his chapters in Brown's book</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331835"
id="ref54"
level="file">
<did>
<unittitle>Brown, Sterling Allen</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/331836"
id="ref55"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Negro Looks at the South</part>
</title>, autograph manuscript, working drafts of three chapters</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/331837"
id="ref56"
level="file">
<did>
<unittitle>Drafts of poems, autograph manuscript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">30</container>
</did>
<scopecontent id="aspace_fd708bfd24069b980557ed2320b482fe">
<head>Scope and Contents</head>
<p>Poems include: "Sharecropper," "Old Lem," and "The Last Ride of Wild Bill." With an autograph letter signed from Brown to (Alain) Locke, "Thursday Afternoon."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/331838"
id="ref58"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Southern Road: Poems</part>
</title>, typescript, carbon, published: New York, Harcourt, Brace & Co.</unittitle>
<unitdatestructured altrender="1932" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1932">1932</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33847 /locations/9"
containerid="39002104854279"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">31</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/331839"
id="ref59"
level="file">
<did>
<unittitle>Buckmaster, Henrietta, <title localtype="simple" render="italic">