-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5386.xml
1304 lines (1304 loc) · 80.4 KB
/
5386.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/med.ms.0054">med.ms.0054</recordid>
<otherrecordid localtype="BIB">13854137</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Joan K. Jackson papers </titleproper>
<titleproper localtype="filing">Jackson (Joan K.) papers </titleproper>
<author>Toby A. Appel</author>
</titlestmt>
<publicationstmt>
<publisher>Medical Historical Library, Cushing/Whitney Medical Library</publisher>
<address>
<addressline>Yale University</addressline>
<addressline>333 Cedar St.</addressline>
<addressline>New Haven, CT 06520-8014</addressline>
<addressline localtype="telephone">203-737-1192 </addressline>
<addressline localtype="fax">203-785-5636</addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://historical.medicine.yale.edu/"
linktitle="http://historical.medicine.yale.edu/"
show="new">http://historical.medicine.yale.edu/</ref>
</addressline>
</address>
<date>2018</date>
<num>Ms Coll 54</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1-3</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-M</agencycode>
<agencyname>Medical Historical Library, Cushing/Whitney Medical 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>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2024-11-27T22:02:21-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday November 27, 2024 at 22:02</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/10/resources/5386" level="collection">
<did>
<unittitle>Joan K. Jackson papers</unittitle>
<unitid>Ms Coll 54</unitid>
<repository>
<corpname>
<part>Medical Historical Library, Cushing/Whitney Medical Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>Papers are in English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>boxes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">Two regular archives boxes and a flat box.</physdesc>
<unitdatestructured altrender="1946-2016" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1946">1946</fromdate>
<todate standarddate="2016">2016</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Jackson, Joan K.</part>
</persname>
</origination>
</did>
<bioghist id="aspace_118d28ee75f36355a10b6ae7d786672b">
<head>Biographical / Historical</head>
<p>Joan K. Jackson, an early expert in alcoholism and the family, was born as Joan Katherine Currie in Parkhill, Ontario, Canada, in 1922. She received her B.A. (1945) and M.A. (1947) in sociology from McGill University where she studied returning Canadian veterans. She married in 1946 Stanley W. Jackson, a veteran, who began the study of medicine at McGill. Joan Jackson received her Ph.D. in (medical) sociology from the University of Washington in 1955. She then joined the Department of Psychiatry where she rose to the level of tenured research associate professor. At the University of Washington, Jackson conducted pioneering research on alcoholism and the family and on alcholism and tuberculosis, and served on various governmental boards. As part of her research she attended Alcoholics Anonymous meetings, starting in 1951, and helped with the wives of alcoholics who were starting Al-Anon in Seattle. She received a coveted five-year research award from NIH. In 1964, at the height of her career, she agreed to leave her faculty position and grant to join her husband, a psychiatrist, who wanted to go to New Haven to study history of medicine. He joined the Psychiaitry Department at Yale and the Section of History of Medicine. She helped him in his career. Joan Jackson became active in alcoholism studies again when she served as a Class A (non-alcoholic) trustee of the General Service Board of Alcoholics Anonymous from 1983 to 1992.</p>
</bioghist>
<scopecontent id="aspace_eb909fd43a71462c06fef1ff8a35a757">
<head>Scope and Contents</head>
<p>The papers include Joan Jackson's masters' degree research, her masters' thesis, correrspondence, presentations, grant applications, and publications, and a scrapbook documenting her successful career at University of Washington. The second part of the collection documents her role as a Class A Trustee (i.e. non-alcoholic) of the General Study Board of Alcoholics Anonymous from 1983 to 1992, incuding her presentations and publications.</p>
</scopecontent>
<arrangement id="aspace_e6bf48c91fa9341b061ff2302076dadd">
<head>Arrangement</head>
<p>Organized into 4 series: 1. Biographical. 2. Academic career, 1946-1964. 3. Class A Trustee of the General Service Board of Alcoholics Anonymous, Inc. 4. Scrapbook.</p>
</arrangement>
<acqinfo id="aspace_20a854e14f5fb8b58f452677290c7aad">
<head>Immediate Source of Acquisition</head>
<p>Donated by the estate of Joan K. Jackson, 2017.</p>
</acqinfo>
<userestrict id="aspace_88c5420723d4f340f471608bc8603dd2">
<head>Conditions Governing Use</head>
<p>Collection is available for research.</p>
</userestrict>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85003287"
source="lcsh">
<part localtype="topical">Alcoholics</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh91003735"
source="lcsh">
<part localtype="topical">Alcoholics' spouses</part>
<part localtype="geographic">Washington (State)</part>
<part localtype="geographic">Seattle</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85083615"
source="lcsh">
<part localtype="topical">Mental health</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85138408"
source="lcsh">
<part localtype="topical">Tuberculosis</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85003288"
source="lcsh">
<part localtype="topical">Alcoholics--Family relationships</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2009114659"
source="lcsh">
<part localtype="topical">Alcoholism--Social aspects</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85003301"
source="lcsh">
<part localtype="topical">Alcoholism--Study and teaching</part>
</subject>
<subject identifier=" " source="local_medical">
<part localtype="topical">Alcoholism</part>
<part localtype="geographic">Washington (State)</part>
<part localtype="geographic">Seattle</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh98004837"
source="lcsh">
<part localtype="topical">Veterans--Canada</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85147604"
source="lcsh">
<part localtype="topical">Women in science</part>
</subject>
<subject source="local_medical">
<part localtype="topical">World War, 1939-1945</part>
<part localtype="topical">Social aspects</part>
<part localtype="geographic">Canada</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300026877" source="aat">
<part localtype="genre_form">Correspondence </part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028028" source="aat">
<part localtype="genre_form">Theses</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85118923"
source="lcsh">
<part localtype="topical">Scrapbooks</part>
</subject>
<occupation source="local_medical">
<part localtype="occupation">Sociologists</part>
<part localtype="geographic">Washington (State)</part>
<part localtype="geographic">Seattle</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Jackson, Stanley W., 1920-</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Alcoholics Anonymous</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Al-Anon Family Group Headquarters, Inc. (History)</part>
</corpname>
<corpname rules="aacr" source="local_medical">
<part localtype="agent_corporate_entity">McGill University. Department of Sociology and Anthropology</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">University of Washington. Department of Psychiatry</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/10/archival_objects/2903180"
id="aspace_eb6af4f28c56d9f8c5af0546952e4160"
level="series">
<did>
<unittitle>Biographical</unittitle>
<unitid>Series 1</unitid>
</did>
<c altrender="/repositories/10/archival_objects/2903143"
id="aspace_0625e5f4cf51b87a2c34113720e42df3"
level="file">
<did>
<unittitle>Curriculum vitae</unittitle>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_0625e5f4cf51b87a2c34113720e42df3_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0625e5f4cf51b87a2c34113720e42df3_c2"
localtype="folder"
parent="aspace_0625e5f4cf51b87a2c34113720e42df3_c1">1</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2903144"
id="aspace_51ec61932cc01f37bbb8b7a833cdde42"
level="file">
<did>
<unittitle>Obituary written by Joan Jackson; other obituaries</unittitle>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_51ec61932cc01f37bbb8b7a833cdde42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_51ec61932cc01f37bbb8b7a833cdde42_c2"
localtype="folder"
parent="aspace_51ec61932cc01f37bbb8b7a833cdde42_c1">2</container>
</did>
<scopecontent id="aspace_ceaf686c37c473a756b20a52f41b280d">
<head>Scope and Contents</head>
<p>Joan Jackson wrote her own obituary ca. 2014-2015, before the death or her last beagle. This is the copy she gave to the archivist, Toby Appel. The <title>
<part>New Haven Register</part>
</title> obituary is based in this.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2903181"
id="aspace_445f6c42d69851ae6580bcf5be892972"
level="file">
<did>
<unittitle>Chapter, "Dr. Joan K. Jackson," in <title>
<part>Women Pioneers in 12 Step Recovery</part>
</title>
</unittitle>
<unitdatestructured altrender="1999" label="publication" unitdatetype="inclusive">
<datesingle standarddate="1999">1999</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_445f6c42d69851ae6580bcf5be892972_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_445f6c42d69851ae6580bcf5be892972_c2"
localtype="folder"
parent="aspace_445f6c42d69851ae6580bcf5be892972_c1">3</container>
</did>
<scopecontent id="aspace_e781e8178f3dc090b8e0dcbae23cdbeb">
<head>Scope and Contents</head>
<p>Folder contains two drafts of the chapter on Jackson by Bob Pearson who interviewed Jackson, and related correspondence. The final publication was Charlotte Hunter, Billye Jones, and Joan Ziegler, <title>
<part>Women Pioneers in 12 Step Recovery</part>
</title> (Center City, Minnesota: Hazelden Foundation, 1999).</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/10/archival_objects/2903142"
id="aspace_542819e035bc103d247698a4f64550dd"
level="series">
<did>
<unittitle>Academic career</unittitle>
<unitid>Series 2</unitid>
<unitdatestructured altrender="1946-1964" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1946">1946</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_fa23af9351df498f28103fac16206ade">
<head>Scope and Contents</head>
<p>Joan Jackson's academic career spans her research for her master's degree at McGill University in 1946-1947, her subsequent work for the Department of Sociology and Anthropology at McGill until 1951, and the period 1951-1964 during which Jackson received her Ph.D. in medical sociology at Washington University in 1955 and became a member of the faculty of the Department of Psychiatry. In Seattle, Jackson became familiar with the work of Alcoholics Anonymous and the beginnings of Al-Anon in the city. Jackson put together a scrapbook from this period which is in Box 3.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/2903147"
id="aspace_03d88b3e43c23e34f128e4b28259c97b"
level="file">
<did>
<unittitle>Bernice Gold and Joan K. Jackson, "Psychological Adjustment of Ex-Service Personnel," National Research Council Canada</unittitle>
<unitdatestructured altrender="1946" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946">1946</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_03d88b3e43c23e34f128e4b28259c97b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_03d88b3e43c23e34f128e4b28259c97b_c2"
localtype="folder"
parent="aspace_03d88b3e43c23e34f128e4b28259c97b_c1">4</container>
</did>
<scopecontent id="aspace_827788f864289d466de641b843dd7a00">
<head>Scope and Contents</head>
<p>Carbon typescript, 282 pages. The heading on the first page is "Role of Attitudes in the Adjustment of Ex-Service Personnel." The authors were master's degree candidates in Sociology at McGill University. Jackson was working for the National Research Council of Canada under the direction of Dr. Ewen Cameron during 1945 and 1946. Jackson's master's thesis at McGill (1947) was on this topic. See next folder.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2908584"
id="aspace_2804efbab927f8aead07c0c532cf1250"
level="file">
<did>
<unittitle>Joan K. Jackson, "Rehabilitation: A National, Institutional, and Individual Crisis," Master's thesis, Department of Sociology, McGill University</unittitle>
<unitdatestructured altrender="1947 September"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1947-09">1947 September</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_2804efbab927f8aead07c0c532cf1250_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2804efbab927f8aead07c0c532cf1250_c2"
localtype="folder"
parent="aspace_2804efbab927f8aead07c0c532cf1250_c1">5</container>
</did>
<scopecontent id="aspace_faf5339fc16d5278c73d739ee7383379">
<head>Scope and Contents</head>
<p>On the rehabilitation of Canadian veterans after World War II, especially public and government attitudes, the psychology of the veteran, and the veteran in the University. See previous folder.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2908585"
id="aspace_8e9c84bf46cb926ed24acfa988a00fbf"
level="file">
<did>
<unittitle>Carl A Dawson and Warner E. Gettys, <title>
<part>An Introduction to Sociology</part>
</title>, 3rd ed.</unittitle>
<unitdatestructured altrender="1948" label="publication" unitdatetype="inclusive">
<datesingle standarddate="1948">1948</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_8e9c84bf46cb926ed24acfa988a00fbf_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8e9c84bf46cb926ed24acfa988a00fbf_c2"
localtype="folder"
parent="aspace_8e9c84bf46cb926ed24acfa988a00fbf_c1">6</container>
</did>
<scopecontent id="aspace_0cdd7daaa88f53bd9e1a27eb3d5fdb82">
<head>Scope and Contents</head>
<p>After completing her master's degree, Jackson stayed on working for the Department of Sociology an Anthropology while her husband finished medical school. This book, published by Ronald Press, New York, was Jackson's underlined and annotated copy. It was inscribed by Carl J. Dawson, Chairman of the Department of Sociology and Anthropology, McGill University: "Mrs. Joan Currie Jackson whose help made the publication of this text-book possible." The authors wrote in the last sentences of the introduction, "Mrs. Joan Currie Jackson, research assistant in the McGill Department of Sociology and Anthropology, did some of the original writing and has been associated with the work of proofreading. Her competency is reflected on every page of this edition."</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2908818"
id="aspace_40e1900c505abf901993e08cf7663cac"
level="file">
<did>
<unittitle>Poem about Joan Jackson</unittitle>
<unitdatestructured altrender="ca. 1949" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949">ca. 1949</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_40e1900c505abf901993e08cf7663cac_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_40e1900c505abf901993e08cf7663cac_c2"
localtype="folder"
parent="aspace_40e1900c505abf901993e08cf7663cac_c1">7</container>
</did>
<scopecontent id="aspace_17c235e29ce5029b87f7c45dc7033599">
<head>Scope and Contents</head>
<p>Poem about Jackson by C.S.J. that notes that Joan is a poet and the she has been married for three years. Folder also contains an undated issue of <title>
<part>First Statement: A Magazine for Young Canadian Writers</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2909383"
id="aspace_32fac3cfef7e08bb9d2ac749a823bf59"
level="file">
<did>
<unittitle>Correspondence, Department of Psychiatry, University of Washington</unittitle>
<unitdatestructured altrender="1958-1964" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1958">1958</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_32fac3cfef7e08bb9d2ac749a823bf59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_32fac3cfef7e08bb9d2ac749a823bf59_c2"
localtype="folder"
parent="aspace_32fac3cfef7e08bb9d2ac749a823bf59_c1">8</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2904483"
id="aspace_36fa17ae90536dfb7ab048aad4cfa1af"
level="file">
<did>
<unittitle>NIH grant application, "Socio-Cultural Studies of Mental Health and Disease"</unittitle>
<unitdatestructured altrender="1956-1957" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1956">1956</fromdate>
<todate standarddate="1957">1957</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_36fa17ae90536dfb7ab048aad4cfa1af_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_36fa17ae90536dfb7ab048aad4cfa1af_c2"
localtype="folder"
parent="aspace_36fa17ae90536dfb7ab048aad4cfa1af_c1">9</container>
</did>
<scopecontent id="aspace_ad22da1c0fcccc0a69d1bcefcbc449f2">
<head>Scope and Contents</head>
<p>Correspondence and the grant application.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2909384"
id="aspace_b6f689dec5ca002ecfbd0fec02ce3299"
level="file">
<did>
<unittitle>Part of a grant application/report on alcoholism and the family</unittitle>
<unitdatestructured altrender="ca. 1959" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">ca. 1959</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_b6f689dec5ca002ecfbd0fec02ce3299_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b6f689dec5ca002ecfbd0fec02ce3299_c2"
localtype="folder"
parent="aspace_b6f689dec5ca002ecfbd0fec02ce3299_c1">10</container>
</did>
<scopecontent id="aspace_1d9d6cf29e8619d4598c178daf64f18e">
<head>Scope and Contents</head>
<p>The report discusses what little research has been done on alcoholism and the family and what Joan Jackson and her collaborators were doing. At this time, alcoholics were almost all men. Research on the families of alcoholics had focused on the wives of alcoholics. Children of alcoholics had not yet been studied.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2904485"
id="aspace_6336afcff0df42046d8af390dbcb8d96"
level="file">
<did>
<unittitle>NSF grants and consultancies</unittitle>
<unitdatestructured altrender="1961-1963" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_6336afcff0df42046d8af390dbcb8d96_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6336afcff0df42046d8af390dbcb8d96_c2"
localtype="folder"
parent="aspace_6336afcff0df42046d8af390dbcb8d96_c1">11</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2904496"
id="aspace_575c29c5a6c745f48a6f112712c20ff6"
level="file">
<did>
<unittitle>NIH Research Career Development Award</unittitle>
<unitdatestructured altrender="1963-1964" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1963">1963</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_575c29c5a6c745f48a6f112712c20ff6_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_575c29c5a6c745f48a6f112712c20ff6_c2"
localtype="folder"
parent="aspace_575c29c5a6c745f48a6f112712c20ff6_c1">12</container>
</did>
<scopecontent id="aspace_e4d6da73aa40b3481e0bf31ba15ec4cd">
<head>Scope and Contents</head>
<p>Jackson won a coveted NIH Career Development Award. At that point, she held the rank of Research Associate Professor (Sociology) in the Department of Psychiatry, University of Washington. The award which, paid Jackson's full salary and research costs, was to last from February 1, 1964 to January 31, 1969.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2903145"
id="aspace_fe49c7486f21fe238824c5ddf389df25"
level="file">
<did>
<unittitle>Presentations</unittitle>
<unitdatestructured altrender="1957" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1957">1957</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_fe49c7486f21fe238824c5ddf389df25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_fe49c7486f21fe238824c5ddf389df25_c2"
localtype="folder"
parent="aspace_fe49c7486f21fe238824c5ddf389df25_c1">13</container>
</did>
<scopecontent id="aspace_4203bbd634178a69a996e907404fa65d">
<head>Scope and Contents</head>
<p>"Some Characteristics of Tuberculous Alcoholics," "N.T. Assn.," Kansas City, May 8, 1957; "Personnel Interpersonal Relationships and the Patient," presented at a nursing conference, November 13, 1957 (date on the paper). The original folder tab had the date of November 15, 1957.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2903146"
id="aspace_47a183218639e740b7460604c68fc70a"
level="file">
<did>
<unittitle>Presentations</unittitle>
<unitdatestructured altrender="1958" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958">1958</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_47a183218639e740b7460604c68fc70a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_47a183218639e740b7460604c68fc70a_c2"
localtype="folder"
parent="aspace_47a183218639e740b7460604c68fc70a_c1">14</container>
</did>
<scopecontent id="aspace_0c3c3601a04d1a7b0d11f21957273e7c">
<head>Scope and Contents</head>
<p>"Research on Alcoholism and Tuberculosis," California Tuberculosis and Health Association, San Mateo, California, April 11, 1958.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2903148"
id="aspace_d4a7eb9b054aa9b8b0a6f8fa5e82bece"
level="file">
<did>
<unittitle>Presentations</unittitle>
<unitdatestructured altrender="1960" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960">1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_d4a7eb9b054aa9b8b0a6f8fa5e82bece_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_d4a7eb9b054aa9b8b0a6f8fa5e82bece_c2"
localtype="folder"
parent="aspace_d4a7eb9b054aa9b8b0a6f8fa5e82bece_c1">1</container>
</did>
<scopecontent id="aspace_5a428a33e84ece83ab35b03c0b734a17">
<head>Scope and Contents</head>
<p>Presentation on alcoholism for the SCA Workshop (Seattle Conference on Alcoholism), January 14, 1960.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2903383"
id="aspace_b0d9b3703ad0e3cfca451e5f4384b5c2"
level="file">
<did>
<unittitle>Presentations</unittitle>
<unitdatestructured altrender="1961" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961">1961</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343962"
containerid="39002010858844"
encodinganalog="archive letter"
id="aspace_b0d9b3703ad0e3cfca451e5f4384b5c2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b0d9b3703ad0e3cfca451e5f4384b5c2_c2"
localtype="folder"
parent="aspace_b0d9b3703ad0e3cfca451e5f4384b5c2_c1">2</container>
</did>
<scopecontent id="aspace_8d23498776395b7591206ca622a01a2b">
<head>Scope and Contents</head>
<p>Kate L. Kogan and Joan K. Jackson, "Research Perspectives in Alcohol Studies and Alcoholism: Alcoholism and the Family," to be presented at the Western Psychological Association Meeting, June 16, 1961; Joan K. Jackson, "Alcoholism and the Family," presented at the Mental Health Research Institute, Western State Hospital, Steilacoom, Washington, August 18, 1961.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2903384"
id="aspace_2ed37ccf3bdad5abbf820b0a495bd358"
level="file">
<did>
<unittitle>Presentations</unittitle>
<unitdatestructured altrender="1962" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1962">1962</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_2ed37ccf3bdad5abbf820b0a495bd358_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_2ed37ccf3bdad5abbf820b0a495bd358_c2"
localtype="folder"
parent="aspace_2ed37ccf3bdad5abbf820b0a495bd358_c1">3</container>
</did>
<scopecontent id="aspace_6fff03bf722ea342265eac436484f5c8">
<head>Scope and Contents</head>
<p>Joan K. Jackson, "Action and Recommendations to Date," presented at the Mayor's Conference on Alcoholism at the University of Washington, November 29, 1962.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2910229"
id="aspace_6098c3740771d580e4cb989f64f28fbf"
level="file">
<did>
<unittitle>Joan K. Jackson, "Al-Anon in Seattle, Washington, U.S.A."</unittitle>
<unitdatestructured altrender="ca. 1961" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961">ca. 1961</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_6098c3740771d580e4cb989f64f28fbf_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6098c3740771d580e4cb989f64f28fbf_c2"
localtype="folder"
parent="aspace_6098c3740771d580e4cb989f64f28fbf_c1">4</container>
</did>
<scopecontent id="aspace_5aaaf8ec5a213af93ccffb6a5fec8b60">
<head>Scope and Contents</head>
<p>Joan Jackson was in Seattle during the early years of Al-Anon in the city and in the United States. What began as a small "AA auxiliary" group of wives of alcoholics grew into several chapters of Al-Anon. This paper traces this history.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2903389"
id="aspace_3170aedb45ba1a0f8fd119103ea376d2"
level="file">
<did>
<unittitle>Unpublished presentation/paper on AA</unittitle>
<unitdatestructured altrender="ca. 1963-1964" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1963">1963</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_3170aedb45ba1a0f8fd119103ea376d2_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_3170aedb45ba1a0f8fd119103ea376d2_c2"
localtype="folder"
parent="aspace_3170aedb45ba1a0f8fd119103ea376d2_c1">5</container>
</did>
<scopecontent id="aspace_2da5a944f04ee9f5a1bf7a0aed1e89f2">
<head>Scope and Contents</head>
<p>Joan K. Jackson, "A Second Look at Alcoholics Anonymous." This paper was addressed to doctors, psychologists, and others treating alcoholism.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2905117"
id="aspace_5b9b72a97c1f1719af72c266123ef71d"
level="file">
<did>
<unittitle>"Research on Alcoholism and the Family," New Zealand Al-Anon</unittitle>
<unitdatestructured altrender="1963" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1963">1963</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1965" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1965">1965</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_5b9b72a97c1f1719af72c266123ef71d_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_5b9b72a97c1f1719af72c266123ef71d_c2"
localtype="folder"
parent="aspace_5b9b72a97c1f1719af72c266123ef71d_c1">6</container>
</did>
<scopecontent id="aspace_73fb4f80064f0c84d4e23da4f44ed609">
<head>Scope and Contents</head>
<p>Apparently, a group of people representing the New Zealand Al-Anon visited Seattle to meet Al-Anon members in Seattle and study the research taking place at the University of Washington. This paper (author unknown) was published in <title>
<part>Inventory</part>
</title>, a New Zealand Al-Anon magazine, in 1965.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2905118"
id="aspace_6e9e441130428cd1a14bd638a5fa2dcd"
level="file">
<did>
<unittitle>Barbara Courtney, paper on Al-Anon</unittitle>
<unitdatestructured altrender="1961 August" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961-08">1961 August</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_6e9e441130428cd1a14bd638a5fa2dcd_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6e9e441130428cd1a14bd638a5fa2dcd_c2"
localtype="folder"
parent="aspace_6e9e441130428cd1a14bd638a5fa2dcd_c1">7</container>
</did>
<scopecontent id="aspace_61520b42804d9919dbab7f3891119890">
<head>Scope and Contents</head>
<p>Barbara Courtney was a student of Joan Jackson and a member of Al-Anon. She became a social worker.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2905108"
id="aspace_ff16892eb1ab3ba784d70697930070e4"
level="file">
<did>
<unittitle>Washington State Department of Health, <title>
<part>Hospital Management of Alcoholics</part>
</title>, Joan K. Jackson, co-PI</unittitle>
<unitdatestructured altrender="ca. 1962" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1962">ca. 1962</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_ff16892eb1ab3ba784d70697930070e4_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ff16892eb1ab3ba784d70697930070e4_c2"
localtype="folder"
parent="aspace_ff16892eb1ab3ba784d70697930070e4_c1">8</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2905111"
id="aspace_7337161bcd66d40237ac73f5e08fff46"
level="file">
<did>
<unittitle>Washington State Department of Health, <title>
<part>Community Attitudes and Knowledge of Alcoholism</part>
</title>
</unittitle>
<unitdatestructured altrender="1963" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1963">1963</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_7337161bcd66d40237ac73f5e08fff46_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_7337161bcd66d40237ac73f5e08fff46_c2"
localtype="folder"
parent="aspace_7337161bcd66d40237ac73f5e08fff46_c1">9</container>
</did>
<scopecontent id="aspace_445d071456e6da3d428b8429ad16aa01">
<head>Scope and Contents</head>
<p>Jackson was a consultant for this report,</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2905113"
id="aspace_3903bb1bff553442f4a95c4182825495"
level="file">
<did>
<unittitle>Clippings on Joan K. Jackson</unittitle>
<unitdatestructured altrender="1958-1963" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1958">1958</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_3903bb1bff553442f4a95c4182825495_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_3903bb1bff553442f4a95c4182825495_c2"
localtype="folder"
parent="aspace_3903bb1bff553442f4a95c4182825495_c1">10</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2905198"
id="aspace_83310b1228bfa4dca84809704d2086d5"
level="file">
<did>
<unittitle>Articles</unittitle>
<unitdatestructured altrender="1953-1989" label="publication" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1953">1953</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_83310b1228bfa4dca84809704d2086d5_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_83310b1228bfa4dca84809704d2086d5_c2"
localtype="folder"
parent="aspace_83310b1228bfa4dca84809704d2086d5_c1">11</container>
</did>
<scopecontent id="aspace_9c562d2f9a31b19dcc9099b4fcf2a84e">
<head>Scope and Contents</head>
<p>This folder includes only a few of Jackson's articles, among them the classic "The Skid Row Alcoholic"(1953). Some of her articles were widely reprinted. In 1989, upon request, her seminal article, "The Adjustment of the Family to the Crisis of Alcoholism" (1954), was republished with a new introduction by Jackson in a pamphlet series by the Center of Alcohol Studies, Rutgers University.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2905209"
id="aspace_a15579617f6b2a173c0850a5d6d4f2ed"
level="file">
<did>
<unittitle>Requests to republish articles</unittitle>
<unitid> </unitid>
<unitdatestructured altrender="1965-1989" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965">1965</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_a15579617f6b2a173c0850a5d6d4f2ed_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_a15579617f6b2a173c0850a5d6d4f2ed_c2"
localtype="folder"
parent="aspace_a15579617f6b2a173c0850a5d6d4f2ed_c1">12</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2910232"
id="aspace_967e345cbf8ec02a61d449104e5eaad0"
level="file">
<did>
<unittitle>Letters to Joan Jackson from parents</unittitle>
<unitdatestructured altrender="1953" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953">1953</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1964" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1964">1964</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_967e345cbf8ec02a61d449104e5eaad0_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_967e345cbf8ec02a61d449104e5eaad0_c2"
localtype="folder"
parent="aspace_967e345cbf8ec02a61d449104e5eaad0_c1">13</container>
</did>
<scopecontent id="aspace_460133aacb6267a818955a19abf7f2a7">
<head>Scope and Contents</head>
<p>Three items from John C. Currie and Ruth Fenn Currie. The first item is a telegram of congratulations. The second is a letter from Mrs. Currie concerning Jackson's departure to New Haven. Her mother wrote, "Find another way to use your training and experience -- You can't just lightly abandon your alcoholics to become plain Mrs. Stanley Jackson (full-time homemaker)."</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2910335"
id="aspace_e7245af225307277a04626f3826fdddc"
level="file">
<did>
<unittitle>Miscellaneous</unittitle>
<unitdatestructured altrender="1940s-1950s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1959">1959</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_e7245af225307277a04626f3826fdddc_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e7245af225307277a04626f3826fdddc_c2"
localtype="folder"
parent="aspace_e7245af225307277a04626f3826fdddc_c1">14</container>
</did>
<scopecontent id="aspace_5395ca5ae919765e982bf66597964c00">
<head>Scope and Contents</head>
<p>The folder contains two photographs taken at a graduation ceremony. One may be of Jackson's parents. The folder also contains an informal note of congratulations on her passing all her examinations, signed Francis(?).</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2910336"
id="aspace_e7530d620230058d0fcf93803bbcae97"
level="file">
<did>
<unittitle>Report of the Alcohol and Drug Abuse Institute, University of Washington</unittitle>
<unitdatestructured altrender="1976 June" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1976-06">1976 June</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_e7530d620230058d0fcf93803bbcae97_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e7530d620230058d0fcf93803bbcae97_c2"
localtype="folder"
parent="aspace_e7530d620230058d0fcf93803bbcae97_c1">15</container>
</did>
<scopecontent id="aspace_3394e7f77fc6fec3c8da147a4262fb2a">
<head>Scope and Contents</head>
<p>This published report, saved by Jackson, does not mention her but shows how much the study of alcoholism at the University of Washington had expanded since Jackson's time there.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/10/archival_objects/2903182"
id="aspace_967e4a96a97ecf931c81e8ac69857c8d"
level="series">
<did>
<unittitle>Class A Trustee of the General Service Board of Alcoholics Anonymous, Inc.</unittitle>
<unitid>Series 3</unitid>
</did>
<scopecontent id="aspace_2b78ec140698f4287622430408734d2a">
<head>Scope and Contents</head>
<p>Joan Jackson served as a Class A Trustee of the General Services Board of Alcoholics Anonymous from 1983 to 1992. The General Services Board was the central governing body of AA. It consisted of 14 alcoholic trustees (most sober for many years), known as Class B trustees, and 7 Class A trustees. The Class A trustees were non-alcoholics who were selected for their knowledge of alcoholism. Jackson was soon recognized for her ability to teach and write, and from 1985 on, she was asked to participate in the orientation of new trustees. The collection contains several of her presentations, programs of meetings, some presentations by others, her testimony before Congress, and her analysis in 2006 of whether it was appropriate for an alcoholic trustee to serve as Chairman of the Board.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/2906782"
id="aspace_e84b549d1cb7ed162024963ff43eff30"
level="file">
<did>
<unittitle>General Service Board of Alcoholics Anonymous, Orientation of new trustees</unittitle>
<unitdatestructured altrender="1985" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1985">1985</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_e84b549d1cb7ed162024963ff43eff30_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e84b549d1cb7ed162024963ff43eff30_c2"
localtype="folder"
parent="aspace_e84b549d1cb7ed162024963ff43eff30_c1">16</container>
</did>
<scopecontent id="aspace_6c94335dd0941c0402cbaf14218dafb0">
<head>Scope and Contents</head>
<p>Folder includes the program, correspondence, and Jackson's presentation, "The Concepts and Their Relation to the Work of the Trustees." Also included is the program of the annual meeting in 1985.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2906783"
id="aspace_6ee10ecaa2fdcd3887a527b6ece22ffb"
level="file">
<did>
<unittitle>General Service Board of Alcoholics Anonymous, Orientation of new trustees</unittitle>
<unitdatestructured altrender="1986" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1986">1986</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"
id="aspace_6ee10ecaa2fdcd3887a527b6ece22ffb_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6ee10ecaa2fdcd3887a527b6ece22ffb_c2"
localtype="folder"
parent="aspace_6ee10ecaa2fdcd3887a527b6ece22ffb_c1">17</container>
</did>
<scopecontent id="aspace_9a2c57fc536be436f292ff887daeea57">
<head>Scope and Contents</head>
<p>Folder includes the program, Jackson's presentations, "The Class A Trustee" and "The Concepts and Their Relationship to the Work of the Trustees," and correspondence from the A.A. General Service Office and from Robert Pearson.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2906784"
id="aspace_5a4aab04ccfff7f351cf7e53254dbb62"
level="file">
<did>
<unittitle>General Service Board of Alcoholics Anonymous, Orientation session</unittitle>
<unitdatestructured altrender="1987" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1987">1987</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343972"
containerid="39002010858836"
encodinganalog="archive letter"