-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1373.xml
4948 lines (4948 loc) · 302 KB
/
1373.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.lewisjon">beinecke.lewisjon</recordid>
<otherrecordid localtype="BIB">9015659</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Jon Lewis Photographs of the United Farm Workers Movement
</titleproper>
<titleproper localtype="filing">Lewis (Jon) Photographs of the United Farm Workers Movement</titleproper>
<author>by Matthew Daniel Mason</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>February 2011</date>
<num>WA Photos 466</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">9015659</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-49, 53-54</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 50-52</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="33">33</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="1043">1,043</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>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:35:41-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:35</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1373" level="collection">
<did>
<unittitle>Jon Lewis photographs of the United Farm Workers movement</unittitle>
<unitid>WA Photos 466</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="spa">Spanish; Castilian</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>In English and Spanish.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>17.65</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">53 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1966">1966</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1966">1966</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_dd3fec94687d8f6eb047d5b21a870527">This collection consists of approximately eleven thousand photographs created by Jon Lewis that document the activities of Ce?sar Cha?vez, the National Farm Workers Association, and United Farm Workers Organizing Committee in California, 1966-1971, as well as related publications and audiovisual materials, including videotapes and videodiscs, 1967-2009. Most images document activities related to the California Grape Strike in 1966.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Lewis, Jon, 1938-2009</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_e820cfd265f34db5b3e2dd770bc4667f">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Gaylord Jon Lewis on the Frederick W. and Carrie S. Beinecke Fund for Western Americana, 2009-2010.</p>
</acqinfo>
<accessrestrict id="aspace_d747be8c63f33b5b13ac975767f5e6ee">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_ae3baaefbc6db43718f6de85d2471a1f">
<head>Conditions Governing Use</head>
<p>The Jon Lewis Photographs of the United Farm Workers Movement is the physical property of The Beinecke Rare Book and Manuscript Library, Yale University. the Beinecke Rare Book and Manuscript Library, Yale University, also retains any and all copyrights in the Jon Lewis Photographs of the United Farm Workers Movement collection and full authority to control commercial use of materials in it. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_d09cee8751f061a1cadcbc1aa8aa6663">
<head>Preferred Citation</head>
<p>Jon Lewis Photographs of the United Farm Workers Movement. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<relatedmaterial id="aspace_1c0c7e6999b6927f22bcf49fbf546967">
<head>Associated Materials</head>
<p>Jon Lewis, Photographs and Film of César Chávez and Agricultural Labor Activities in California (WA Photos 81). Beinecke Rare Book and Manuscript Library, Yale University.</p>
</relatedmaterial>
<bioghist id="aspace_af83f576c51c4d34445368ceec38a87a">
<head>Jon Lewis (1938-2009)</head>
<p>Gaylord Jon Lewis (1938-2009) was a photographer and printer in San Francisco, California. After service in the United States Marine Corps, Lewis earned a baccalaureate degree from San Jose State University. In 1966, Lewis joined the farm worker movement and documented the work and activities of César Chávez and the California Grape Strike. He later earned a graduate degree in photography at San Francisco State University.</p>
</bioghist>
<bioghist id="aspace_4d6e240813a79896765c85ff06a0843e">
<head>United Farm Workers of America and the California Grape Strike</head>
<p>The United Farm Workers of America (UFWA) is a labor union created from the merging of the Agricultural Workers Organizing Committee (AWOC) led by Larry Itliong (1913-1977), Philip Vera Cruz (1904-1994), and others, with the National Farm Workers Association (NFWA) led by César Chávez (1927-1993) and Dolores Huerta (born 1930).</p>
<p>On September 8, 1965, the AWOC and its primarily Filipino membership started a strike against grape growers in Delano, California. During the strike they demanded salaries equal to the federal minimum wage. The predominantly Mexican-American NFWA joined the strike soon after it began. During the California Grape Strike and related boycott of table grapes, the AWOC and NFWA recognized their common goals and methods. On August 22, 1966, the groups combined to form the United Farm Workers Organizing Committee and became a member of the American Federation of Labor and Congress of Industrial Organizations. The union eventually became the United Farm Workers of America. By 1970, the UFWA reached a collective bargaining agreement with the table-grape growers.</p>
</bioghist>
<scopecontent id="aspace_5c4d4a8bfdf3579ac3db2fbd7e2b133c">
<head>Scope and Contents</head>
<p>This collection consists of approximately eleven thousand photographs created by Jon Lewis that document the activities of César Chávez, the National Farm Workers Association, and United Farm Workers Organizing Committee in California, 1966-1971, as well as related publications and audiovisual materials, 1967-2009. Most images document activities related to the California Grape Strike in 1966.</p>
<p>Images include migrant agricultural laborers during the picketing fields of table grape growers, including the Di Giorgio Fruit Corporation, in Delano, California, during the California Grape Strike. Other images related to the strikers depict the labor of farm workers, their housing, and the vineyards. A group of images depicts strikers picketing the arrival of Governor Edmund Gerald "Pat" Brown, Sr. at the meeting of the California Democratic Council in Bakersfield, California, February 1966. A significant group of images documents a visit to strikers by Senator Robert F. Kennedy in March 1966, as well as a related local hearing for the Senate Subcommittee on Migratory Labor that he conducted with Senators Harrison A. Williams and George L. Murphy in Delano. Groups of images also document college student volunteers supporting the strike during the summer of 1966.</p>
<p>Many images document a peregrinación (pilgrimage) march during the California Grape Strike from Delano to Sacramento, March-April 1966, including informal portraits of César Chávez; views of marchers and flag bearers holding flags for the National Farm Workers Association; and images of a banner that depicts the Catholic icon of the Virgin Mary known as Our Lady of Guadalupe. Related images to the peregrinación show volunteers and activities that provided material support for the march, including food caravans and temporary camps, as well as rallies held along the route of the march.</p>
<p>A substantial portion of images in the collection document performances of El Teatro Campesino, a theatrical troupe founded by Luis Valdez and Agustin Lira, which performed as a cultural arm of the National Farm Workers Association.</p>
<p>A small group of images depict César Chávez at an outdoor religious service during his Fast for Nonviolence at the Field Office of the United Farm Workers of America in Delano, also known as "Forty Acres," February-March 1968.</p>
<p>Few individuals involved with the strike are identified in the images. Individuals identified in the collection include César Chávez and his wife, Helen Chávez, as well as other members of the union leadership, including James L. Drake, Marshall Ganz, Dolores Huerta, Larry Itliong, Antonio Orendain, Gilbert Padilla, and Fred Ross.</p>
<p>Besides documenting the activities of the groups and individuals, the photographic material in the collection documents the evolution of images from negatives captured by Lewis to resultant prints and publications. The negatives and contact sheets show variant images captured by Lewis. The books and audiovisual materials document the ways in which Lewis and others used the images.</p>
</scopecontent>
<arrangement id="aspace_7107bbac894f4600040449c63a938b82">
<head>Arrangement</head>
<p>Organized into two series: I. Photographs, 1966-1971. II. Books and Audiovisual Materials, 1967-2009.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Agricultural industries</part>
<part localtype="geographic">California</part>
</subject>
<subject source="local">
<part localtype="topical">Documentary films</part>
<part localtype="geographic">California</part>
</subject>
<subject source="local">
<part localtype="topical">Guadalupe, Our Lady of</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local">
<part localtype="topical">Grape Strike, Calif., 1965-1970</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local">
<part localtype="topical">Labor leaders</part>
<part localtype="geographic">United States</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local">
<part localtype="topical">Labor unions</part>
<part localtype="geographic">United States</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local">
<part localtype="topical">Mexican American labor union members</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local">
<part localtype="topical">Migrant agricultural laborers</part>
<part localtype="geographic">California</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local">
<part localtype="topical">Mexican American migrant agricultural laborers</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local">
<part localtype="topical">Strikes and lockouts</part>
<part localtype="topical">Agricultural laborers</part>
<part localtype="geographic">California</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<geogname source="local">
<part localtype="geographic">Delano (Calif.)</part>
<part localtype="topical">Strike, 1965-66</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300264677" source="aat">
<part localtype="genre_form">DVDs</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">DVD-Video discs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127173" source="aat">
<part localtype="genre_form">Negatives (photographs)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300128371" source="aat">
<part localtype="genre_form">Slides (photographs)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028689" source="aat">
<part localtype="genre_form">Videotapes</part>
</genreform>
<persname>
<part localtype="agent_person">Chavez, Cesar, 1927-1993</part>
<part localtype="genre_form">Pictorial works</part>
</persname>
<persname source="local">
<part localtype="agent_person">Huerta, Dolores, 1930-</part>
<part localtype="genre_form">Pictorial works</part>
</persname>
<persname>
<part localtype="agent_person">Lewis, Jon, 1938-2009</part>
</persname>
<persname>
<part localtype="agent_person">Lewis, Jon, 1938-2009</part>
<part localtype="genre_form">Pictorial works</part>
</persname>
<persname source="local">
<part localtype="agent_person">Lira, Agustín</part>
<part localtype="genre_form">Pictorial works</part>
</persname>
<persname source="local">
<part localtype="agent_person">Valdez, Luis</part>
<part localtype="genre_form">Pictorial works</part>
</persname>
<corpname source="local">
<part localtype="agent_corporate_entity">Di Giorgio Fruit Corporation</part>
<part localtype="genre_form">Pictorial works</part>
</corpname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">National Farm Workers Association</part>
<part localtype="genre_form">Pictorial works</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">Teatro Campesino (Organization)</part>
<part localtype="genre_form">Pictorial works</part>
</corpname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">United Farm Workers Organizing Committee</part>
<part localtype="genre_form">Pictorial works</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/504578"
id="ref129"
level="series">
<did>
<unittitle>Books and Audiovisual Materials</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured altrender="1967-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_55d00719372b930ecc15da16a8935294">
<head>Arrangement</head>
<p>Series II is organized into two subseries: Books and Audiovisual Materials by Lewis and Materials by Others</p>
</arrangement>
<scopecontent id="aspace_b2843ae128bcb84fc72bae421b647657">
<head>Scope and Contents</head>
<p>This series consists of publications and audiovisual materials created by Lewis and others that used his photographs.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/504483"
id="ref14"
level="subseries">
<did>
<unittitle>Portfolios</unittitle>
</did>
<arrangement id="aspace_3af4efa6958bbce973f29f693e1027a0">
<head>Arrangement</head>
<p>Arranged alphabetically.</p>
</arrangement>
<scopecontent id="aspace_0d72f5ee26cb5d2ac000a359c111b47f">
<head>Scope and Contents</head>
<p>Groups of chiefly black and white photographic prints compiled by Lewis based on their general subject matter under titles applied by Lewis.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/504484"
id="ref15"
level="file">
<did>
<unittitle>1960s I</unittitle>
<unitdatestructured altrender="1966-1968" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1966">1966</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">1</container>
<daoset altrender="/repositories/11/digital_objects/284562">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16728961"
identifier="oid:16728961"
linktitle="54 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16728971/full/!150,150/0/default.jpg"
identifier="oid:16728961"
linktitle="[Black and white photographic print of march with field in background recto]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16728961"
identifier="oid:16728961"
linktitle="[Black and white photographic print of march with field in background recto]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>1960s I</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504485"
id="ref16"
level="file">
<did>
<unittitle>1960s II</unittitle>
<unitdatestructured altrender="1966-1968" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1966">1966</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">2</container>
<daoset altrender="/repositories/11/digital_objects/284555">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16728962"
identifier="oid:16728962"
linktitle="48 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16729025/full/!150,150/0/default.jpg"
identifier="oid:16728962"
linktitle="[Photographic print of man recto]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16728962"
identifier="oid:16728962"
linktitle="[Photographic print of man recto]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>1960s II</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504486"
id="ref17"
level="file">
<did>
<unittitle>Boycott Di Giorgio Fruit Corporation March in San Francisco, California</unittitle>
<unitdatestructured altrender="1966 July 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966-07-09">1966 July 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504487"
id="ref18"
level="file">
<did>
<unittitle>César Chávez I</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">4</container>
<daoset altrender="/repositories/11/digital_objects/284548">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10606457"
identifier="oid:10606457"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/10606836/full/!150,150/0/default.jpg"
identifier="oid:10606457"
linktitle="recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10606457"
identifier="oid:10606457"
linktitle="recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>César Chávez I</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504488"
id="ref19"
level="file">
<did>
<unittitle>César Chávez II</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">5</container>
<daoset altrender="/repositories/11/digital_objects/282996">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:33220797"
linktitle="112 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/33220797"
identifier="oid:33220797"
linktitle="112 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>César Chávez II</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504489"
id="ref20"
level="file">
<did>
<unittitle>César Chávez Fast For Nonviolence</unittitle>
<unitdatestructured altrender="1968 February-March"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1968-02">1968 February</fromdate>
<todate standarddate="1968-03">1968 March</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504490"
id="ref21"
level="file">
<did>
<unittitle>Dolores Huerta</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">7</container>
<daoset altrender="/repositories/11/digital_objects/284549">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10606458"
identifier="oid:10606458"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/10606838/full/!150,150/0/default.jpg"
identifier="oid:10606458"
linktitle="recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10606458"
identifier="oid:10606458"
linktitle="recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Dolores Huerta</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504491"
id="ref22"
level="file">
<did>
<unittitle>Di Giorgio Fruit Corporation Phony Election</unittitle>
<unitdatestructured altrender="1966 June 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966-06-24">1966 June 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">8</container>
<daoset altrender="/repositories/11/digital_objects/284561">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10186956"
identifier="oid:10186956"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1432392/full/!150,150/0/default.jpg"
identifier="oid:10186956"
linktitle="Recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10186956"
identifier="oid:10186956"
linktitle="Recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Di Giorgio Fruit Corporation Phony Election</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504492"
id="ref23"
level="file">
<did>
<unittitle>Di Giorgio Fruit Corporation Election Organizing</unittitle>
<unitdatestructured altrender="1966 August" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966-08">1966 August</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">9</container>
<daoset altrender="/repositories/11/digital_objects/282995">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:33220910"
linktitle="80 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/33220910"
identifier="oid:33220910"
linktitle="80 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Di Giorgio Fruit Corporation Election Organizing</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504493"
id="ref24"
level="file">
<did>
<unittitle>Di Giorgio Fruit Corporation Election Rally and Food Caravan from Sacramento to Delano</unittitle>
<unitdatestructured altrender="1966 August" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966-08">1966 August</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65455 /locations/4051"
containerid="39002094485134"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504494"
id="ref25"
level="file">
<did>
<unittitle>Di Giorgio Fruit Corporation Election</unittitle>
<unitdatestructured altrender="1966 August 30"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1966-08-30">1966 August 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65456 /locations/4051"
containerid="39002094485142"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">11</container>
<daoset altrender="/repositories/11/digital_objects/284559">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10186958"
identifier="oid:10186958"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1432395/full/!150,150/0/default.jpg"
identifier="oid:10186958"
linktitle="Recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10186958"
identifier="oid:10186958"
linktitle="Recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Di Giorgio Fruit Corporation Election</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504495"
id="ref26"
level="file">
<did>
<unittitle>Environs and Detritus</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65456 /locations/4051"
containerid="39002094485142"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504496"
id="ref27"
level="file">
<did>
<unittitle>Faces I</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65456 /locations/4051"
containerid="39002094485142"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">13</container>
<daoset altrender="/repositories/11/digital_objects/284557">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10186959"
identifier="oid:10186959"
linktitle="6 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1432397/full/!150,150/0/default.jpg"
identifier="oid:10186959"
linktitle="Recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10186959"
identifier="oid:10186959"
linktitle="Recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Faces I</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504497"
id="ref28"
level="file">
<did>
<unittitle>Faces II</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65456 /locations/4051"
containerid="39002094485142"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504498"
id="ref29"
level="file">
<did>
<unittitle>Fieldwork I</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65456 /locations/4051"
containerid="39002094485142"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">15</container>
<daoset altrender="/repositories/11/digital_objects/284552">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10186962"
identifier="oid:10186962"
linktitle="6 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1432403/full/!150,150/0/default.jpg"
identifier="oid:10186962"
linktitle="Recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10186962"
identifier="oid:10186962"
linktitle="Recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Fieldwork I</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504499"
id="ref30"
level="file">
<did>
<unittitle>Fieldwork II and Fieldscapes</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65456 /locations/4051"
containerid="39002094485142"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504500"
id="ref31"
level="file">
<did>
<unittitle>Infrastructure</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65456 /locations/4051"
containerid="39002094485142"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504501"
id="ref32"
level="file">
<did>
<unittitle>Kids I</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65457 /locations/4051"
containerid="39002094485159"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">18</container>
<daoset altrender="/repositories/11/digital_objects/284565">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16728963"
identifier="oid:16728963"
linktitle="94 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16729073/full/!150,150/0/default.jpg"
identifier="oid:16728963"
linktitle="[Photographic print of child holding sign overhead recto]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16728963"
identifier="oid:16728963"
linktitle="[Photographic print of child holding sign overhead recto]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Kids I</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504502"
id="ref33"
level="file">
<did>
<unittitle>Kids II</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65457 /locations/4051"
containerid="39002094485159"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504503"
id="ref34"
level="file">
<did>
<unittitle>Leadership</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65457 /locations/4051"
containerid="39002094485159"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">20</container>
<daoset altrender="/repositories/11/digital_objects/178661">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/32368900"
identifier="oid:32368900"
linktitle="28 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/32368901/full/!150,150/0/default.jpg"
identifier="oid:32368900"
linktitle="[recto]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/32368900"
identifier="oid:32368900"
linktitle="[recto]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Leadership</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/504504"
id="ref35"
level="file">
<did>
<unittitle>Peregrinación I</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65457 /locations/4051"
containerid="39002094485159"
id="aspace_ref35_c1"