-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathactions.json
11503 lines (11503 loc) · 425 KB
/
actions.json
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
[
{
"id": 1,
"date": "1979/09/01",
"sources": [
"https://twitter.com/clancynewyork/status/1175872040814993408?s=19, http://www-cs-students.stanford.edu/~cale/cs201/apartheid.comp.html"
],
"actions": [
"protest"
],
"struggles": [
"ethics"
],
"employment_types": [
"white_collar_workers"
],
"description": "IBM workers formed an organization, IBM: Speak Up!, to protest the company's involvement with apartheid South Africa. The company created the computer system that upheld the country's passbook system. The company officially divested from South Africa in 1987.",
"online": null,
"locations": [
"worldwide"
],
"companies": [
"ibm"
],
"workers": null,
"tags": [
"international_solidarity"
],
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 2,
"date": "1986/09/16",
"sources": [
"https://www.nytimes.com/1986/09/16/science/software-seen-as-obstacle-in-developing-star-wars.html"
],
"actions": [
"open_letter"
],
"struggles": [
"ethics"
],
"employment_types": [
"white_collar_workers"
],
"description": "Fourteen employees at AT&T sign a letter warning the U.S. military of over 10,000 possible errors in the Star Wars system.",
"online": null,
"locations": [
"usa"
],
"companies": [
"at&t"
],
"workers": 14,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
45.5733162,
-122.5587111463347
]
],
"addresses": [
"AT&T, 10025, Northeast Cascades Parkway, Portland, Multnomah County, Oregon, 97220, United States of America"
]
},
{
"id": 3,
"date": "1986/09/16",
"sources": [
"https://www.nytimes.com/1986/09/16/science/software-seen-as-obstacle-in-developing-star-wars.html"
],
"actions": [
"open_letter"
],
"struggles": [
"ethics"
],
"employment_types": [
"white_collar_workers"
],
"description": "A group of computer professionals, led by Computer Professionals for Social Responsibility (CPSR), signs a petition arguing that Pres. Reagan's Star Wars system is not feasible given current technology. Such a system would be prone to major errors, they argued, and would be irresponsible to implement.",
"online": null,
"locations": [
"usa"
],
"companies": null,
"workers": 30,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
39.7837304,
-100.4458825
]
],
"addresses": [
"United States"
]
},
{
"id": 4,
"date": "1994/01/24",
"sources": [
"https://www.nytimes.com/1994/06/12/magazine/battle-of-the-clipper-chip.html, http://cpsr.org/prevsite/program/clipper/clipper.html/"
],
"actions": [
"open_letter"
],
"struggles": [
"ethics"
],
"employment_types": [
"white_collar_workers"
],
"description": "Computer Professionals for Social Responsibility (CPSR) launches an online petition in opposition to the Clipper Chip, a cryptographic device intended to provide a standard for securing private voice communication. The group expresses concern about the possibility of surveillance through decryption keys held by government agencies. The petition obtains over 50,000 signatures. An earlier physical letter, sent directly to the President, received 40 signatures from cryptography and computing experts.",
"online": true,
"locations": null,
"companies": null,
"workers": 50000,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 5,
"date": "1998/11/23",
"sources": [
"http://www.cnn.com/tech/computing/9811/23/mstemps.idg/"
],
"actions": [
"legal_action"
],
"struggles": [
"unfair_labor_practices",
"pay_and_benefits"
],
"employment_types": [
"contract_workers"
],
"description": "A law firm representing 10 current and former contract workers at Microsoft Corp. filed a lawsuit in U.S. District Court on Tuesday against the software giant, seeking damages and full-time employee benefits for its plaintiffs and thousands of other 'misclassified' temporary employees. The 10 plaintiffs seek class-action status because they want to include some 6,000 current full-time Microsoft employees who have been 'misclassified as nonemployees' under 'various erroneous labels' and denied company benefits.",
"online": null,
"locations": [
"usa"
],
"companies": [
"microsoft"
],
"workers": 10,
"tags": null,
"author": [
"organizejs"
],
"latlngs": [
[
35.139622349999996,
-80.92306993327955
]
],
"addresses": [
"Microsoft, Yorkwood, Charlotte, Mecklenburg County, North Carolina, United States of America"
]
},
{
"id": 6,
"date": "1999/06/04",
"sources": [
"https://www.latimes.com/archives/la-xpm-1999-jun-04-fi-44011-story.html, https://www.questia.com/newspaper/1p2-32575557/the-seeds-of-a-high-tech-union-sprout-in-washington"
],
"actions": [
"union_drive"
],
"struggles": [
"pay_and_benefits"
],
"employment_types": [
"white_collar_workers",
"contract_workers"
],
"description": "A group of temporary workers at Microsoft that includes accountants and lawyers has organized into a bargaining unit and is asking for representation through a local union, the Washington Alliance of Technology Workers. The employees expressed frustration at their status as contract workers, citing a lack of benefits as a motivating factor for the unionization attempt.",
"online": null,
"locations": [
"seattle-washington-usa"
],
"companies": [
"microsoft"
],
"workers": 16,
"tags": [
"washtech"
],
"author": [
"nataliyaned"
],
"latlngs": [
[
47.5388725,
-122.2901728
]
],
"addresses": [
"Microsoft Gathering Hall, 7054, 32nd Avenue South, Columbia City, Holly Park, Seattle, King County, Washington, 98118, United States of America"
]
},
{
"id": 7,
"date": "1999/10/01",
"sources": [
"https://www.computerworld.com/article/3019552/ibm-union-calls-it-quits.html, https://www.nytimes.com/1985/07/17/us/union-plans-drive-to-organize-ibm.html?rref=collection%2ftimestopic%2fcommunications%20workers%20of%20america, https://cwa-union.org/news/entry/ibm_employees_and_cwa_launch_allianceibm"
],
"actions": [
"union_drive"
],
"struggles": [
"pay_and_benefits",
"working conditions"
],
"employment_types": [
"white_collar_workers"
],
"description": "The Communications Workers of America have renewed their drive to organize IBM employees. CWA previously attempted to unionize IBM in 1985. This time around the union started a new organization, Alliance @IBM. It reports that roughly 100 thousand of the company's 140 thousand workers are eligible for unionization. Union supporters have started outreach and leafletting efforts at multiple locations, including the Research Triangle in North Carolina. The new organization will work with the existing IBM Employee Benefits Action Coalition. This effort continued for the next seventeen years, until it was ended 2016. At its peak, the Alliance had 400 dues-paying members.",
"online": null,
"locations": [
"worldwide"
],
"companies": [
"ibm"
],
"workers": null,
"tags": [
"cwa"
],
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 8,
"date": "2000/11/16",
"sources": [
"https://money.cnn.com/2000/11/16/technology/amazon_union/"
],
"actions": [
"union_drive"
],
"struggles": [
"pay_and_benefits",
"working conditions"
],
"employment_types": [
"in_house_workers"
],
"description": "In one of the first reported unionization attempts at a 'dot com company', an affiliate of the Communication Workers of America known as the Washington Alliance of Technology Workers (WashTech) sought to unionize a group of 400 customer service employees at Amazon. Amazon closed the call center before the campaign could proceed further due to financial pressures following the dot-com bubble in the early 2000s. Amazon has disputed unionization by arguing that the employees are owners of the company since they are given stock options.",
"online": null,
"locations": [
"seattle-washington-usa"
],
"companies": [
"amazon"
],
"workers": 400,
"tags": [
"washtech",
"cwa"
],
"author": [
"nataliyaned"
],
"latlngs": [
[
47.6142939,
-122.3239636
]
],
"addresses": [
"Amazon Go Grocery, 610, East Pike Street, Central Business District, First Hill, Seattle, King County, Washington, 98122, United States of America"
]
},
{
"id": 9,
"date": "2000/11/23",
"sources": [
"https://www.nytimes.com/2000/11/23/business/technology-unions-pushing-to-organize-thousands-of-amazoncom-workers.html?rref=collection%2ftimestopic%2fcommunications%20workers%20of%20america"
],
"actions": [
"union_drive"
],
"struggles": [
"pay_and_benefits",
"working conditions"
],
"employment_types": [
"blue_collar_workers"
],
"description": "The United Food and Commercial Workers Union is attempting to organize roughly 5,000 workers at eight Amazon distribution centers across the U.S. The New York Times reports that 'low-key' unionization efforts have been going on in the company for the last two years.",
"online": null,
"locations": [
"usa"
],
"companies": [
"amazon"
],
"workers": 5000,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
47.6142939,
-122.3239636
]
],
"addresses": [
"Amazon Go Grocery, 610, East Pike Street, Central Business District, First Hill, Seattle, King County, Washington, 98122, United States of America"
]
},
{
"id": 10,
"date": "2001/01/09",
"sources": [
"https://www.nytimes.com/2001/01/09/business/technology-the-first-unionization-vote-by-dot-com-workers-is-set.html?rref=collection%2ftimestopic%2fcommunications%20workers%20of%20america, https://money.cnn.com/2001/02/19/sunsetting/biz_etown/, https://www.sfgate.com/business/article/etown-runs-out-of-money-shuts-down-web-site-s-2951974.php, https://www.wired.com/2001/01/union-to-etown-threats-unfair/"
],
"actions": [
"union_representation"
],
"struggles": [
"pay_and_benefits",
"working conditions"
],
"employment_types": [
"in_house_workers"
],
"description": "Customer service representatives at etown.com, a website that provides information on consumer electronics. voted on whether to join the Communication Workers of America. The New York Times reports that this is the first unionization vote at a dot com. Two workers who lead unionization efforts were reportedly fired by the company in the time leading up to the vote. Management threatened to shut down the company if unionization proceeded, which prompted CWA to file a motion with the NLRB. The company ultimately did shut down in mid-February 2001, due to failure to secure additional venture capital funding.",
"online": null,
"locations": [
"san francisco-california-usa"
],
"companies": [
"etown"
],
"workers": 13,
"tags": [
"washtech",
"cwa",
"retaliation"
],
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 11,
"date": "2004/09/29",
"sources": [
"http://www.nbcnews.com/id/6134119/ns/business-us_business/t/ibm-reaches-partial-pension-settlement/, https://www.nytimes.com/2006/01/06/business/worldbusiness/06iht-ibm.html"
],
"actions": [
"legal_action"
],
"struggles": [
"discrimination",
"pay_and_benefits"
],
"employment_types": [
"na"
],
"description": "IBM employees launched a class-action lawsuit against the company, alleging they faced age discrimation when they were forced to transition from a traditional pension plan to a cash balance plan. The company paid $320 million to settle with 15,000 employees. A federal judge ruled in favor of employees but the company launched an appeals process that dragged on until 2006 when they officially froze pension plans.",
"online": null,
"locations": [
"usa"
],
"companies": [
"ibm"
],
"workers": 140000,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
44.05795005,
-92.50701462052399
]
],
"addresses": [
"IBM, Rochester, Olmsted County, Minnesota, 55901:55960, United States of America"
]
},
{
"id": 12,
"date": "2006/03/09",
"sources": [
"http://old.seattletimes.com/html/businesstechnology/2002853223_washtech09.html"
],
"actions": [
"union_drive"
],
"struggles": [
"pay_and_benefits"
],
"employment_types": [
"white_collar_workers"
],
"description": "After anonymously receiving several pages of confidential compensation guidelines, the Washington Alliance of Technology Workers has relaunched an effort the unionize employees at Microsoft. The leaked guidelines showed that wages at the company barely rose in the last two years, which the union hopes will be a rallying cry for workers. In 2003, the company stopped giving employees stock options, opting for stock instead.",
"online": null,
"locations": [
"seattle-washington-usa"
],
"companies": [
"microsoft"
],
"workers": null,
"tags": [
"washtech",
"cwa"
],
"author": [
"nataliyaned"
],
"latlngs": [
[
47.5388725,
-122.2901728
]
],
"addresses": [
"Microsoft Gathering Hall, 7054, 32nd Avenue South, Columbia City, Holly Park, Seattle, King County, Washington, 98118, United States of America"
]
},
{
"id": 13,
"date": "2007/07/14",
"sources": [
"https://www.bloomberg.com/news/articles/2007-07-13/the-gandhi-protestsbusinessweek-business-news-stock-market-and-financial-advice"
],
"actions": [
"protest"
],
"struggles": [
"job_security"
],
"employment_types": [
"white_collar_workers"
],
"description": "Approximately a thousand foreign tech workers protested US H1B visa caps on the streets of San Jose. A shortage of visas has created difficult conditions for workers.",
"online": null,
"locations": [
"san jose-california-usa"
],
"companies": null,
"workers": 1000,
"tags": [
"immigration"
],
"author": [
"nataliyaned"
],
"latlngs": [
[
37.3361905,
-121.8905833
]
],
"addresses": [
"San Jose, Santa Clara County, California, United States of America"
]
},
{
"id": 14,
"date": "2007/09/26",
"sources": [
"https://money.cnn.com/2007/09/25/smbusiness/h1b_cap.fsb/index.htm"
],
"actions": [
"protest"
],
"struggles": [
"job_security"
],
"employment_types": [
"white_collar_workers"
],
"description": "Roughly a thousand foreign tech workers protested US H1B visa caps in Washington DC. They urged Congress to increase the number of visas supplied annually.",
"online": null,
"locations": [
"washington_dc-usa"
],
"companies": null,
"workers": 1000,
"tags": [
"immigration"
],
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 15,
"date": "2007/10/30",
"sources": [
"https://www.nytimes.com/2007/10/30/technology/30iht-techlabor.1.8109819.html?searchresultposition=1"
],
"actions": [
"protest"
],
"struggles": [
"job_security"
],
"employment_types": [
"white_collar_workers"
],
"description": "Hundreds' of immigrant tech workers protested H1B visa caps on the streets of San Jose carrying banners and signs. A shortage of H1B visas has led to insecure working conditions and labor shortages among tech firms.",
"online": null,
"locations": [
"san jose-california-usa"
],
"companies": null,
"workers": 200,
"tags": [
"immigration"
],
"author": [
"nataliyaned"
],
"latlngs": [
[
37.3361905,
-121.8905833
]
],
"addresses": [
"San Jose, Santa Clara County, California, United States of America"
]
},
{
"id": 16,
"date": "2009/05/18",
"sources": [
"http://www.asianews.it/index.php?l=en&art=15278&size=a"
],
"actions": [
"legal_action",
"protest"
],
"struggles": [
"pay_and_benefits"
],
"employment_types": [
"na"
],
"description": "Thousands' of Baidu employees filed complaints at the Labor Office in Shenzen to protest recent wage cuts. Earlier in the month, 'hundreds' of employees were part of an office sit-in. The company cut wages for sales employees by approximately 30% in response to cost pressures resulting from the global financial crisis.",
"online": null,
"locations": [
"shenzen-china"
],
"companies": [
"baidu"
],
"workers": 1000,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 17,
"date": "2009/12/16",
"sources": [
"https://techcrunch.com/2009/12/16/yahoo-engineers-strike-after-closure-of-french-rd-site-results-in-78-laid-off/"
],
"actions": [
"protest"
],
"struggles": [
"job_security"
],
"employment_types": [
"white_collar_workers"
],
"description": "Engineers at Yahoo France held a strike to protest the company's plans to shut down an R&D office in Echirolles, laying off 78 people or roughly one-third of the company's total employees in the country. ",
"online": null,
"locations": [
"echirolles-france"
],
"companies": [
"yahoo"
],
"workers": null,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 18,
"date": "2011/12/28",
"sources": [
"https://www.reuters.com/article/us-china-lg-strike-idustre7br0jh20111228"
],
"actions": [
"strike"
],
"struggles": [
"pay_and_benefits"
],
"employment_types": [
"blue_collar_workers"
],
"description": "LG workers in Nanjing went on strike to protest the low pay they receive relative to Korean LG employees at the same plant.",
"online": null,
"locations": [
"nanjing-china"
],
"companies": [
"lg"
],
"workers": 8000,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
32.1576782,
118.86592783961245
]
],
"addresses": [
"LG, \u6816\u971e\u533a, \u6c5f\u82cf\u7701, China \u4e2d\u56fd"
]
},
{
"id": 19,
"date": "2012/01/11",
"sources": [
"https://www.telegraph.co.uk/news/worldnews/asia/china/9006988/mass-suicide-protest-at-apple-manufacturer-foxconn-factory.html, https://www.cbsnews.com/news/what-happened-after-the-foxconn-suicides/"
],
"actions": [
"protest"
],
"struggles": [
"job_security"
],
"employment_types": [
"blue_collar_workers"
],
"description": "150 FoxConn workers in Wuhan, China threatened suicide and ultimately spent two days on the roof of their plant to protest forced reassignments. In 2010, 18 FoxConn workers attempted suicide with a resulting 14 deaths.",
"online": null,
"locations": [
"wuhan-china"
],
"companies": [
"foxconn"
],
"workers": 150,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 20,
"date": "2012/01/17",
"sources": [
"https://www.nbcnews.com/news/world/wikipedia-goes-dark-piracy-bill-protest-day-flna117714, https://bits.blogs.nytimes.com/2012/01/18/for-online-protests-throwing-spaghetti-against-the-internet/"
],
"actions": [
"protest"
],
"struggles": [
"ethics"
],
"employment_types": [
"na"
],
"description": "A number of prominent websites including Wikipedia, Reddit, and the Internet Archive staged blackouts, taking their websites temporarily offline, to protest anti-piracy legislation in the U.S. Congress. Wikipedia staged a 24-hour blackout, while Reddit's protest lasted 12 hours. Both the Stop Online Piracy Act (SOPA) and Protect IP Act ultimately failed to pass.",
"online": true,
"locations": [
"usa"
],
"companies": [
"wikipedia",
"reddit",
"internet_archive"
],
"workers": null,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
39.1438833,
-84.521244
]
],
"addresses": [
"Ludlow Garage, 342, Ludlow Avenue, Clifton Business District, Clifton, Cincinnati, Hamilton County, Ohio, 45220, United States of America"
]
},
{
"id": 21,
"date": "2012/04/27",
"sources": [
"https://www.reuters.com/article/us-china-foxconn/workers-protest-at-foxconn-plant-in-china-idusbre83q0jv20120427"
],
"actions": [
"protest"
],
"struggles": [
"pay_and_benefits"
],
"employment_types": [
"blue_collar_workers"
],
"description": "Approximately 200 FoxConn workers in Wuhan, China threatened to jump of the roof of a building yesterday to protest low wages. The protests recalled a series of worker suicides in 2010 and a similar protest held in January at the same facility.",
"online": null,
"locations": [
"wuhan-china"
],
"companies": [
"foxconn"
],
"workers": 200,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 22,
"date": "2012/05/01",
"sources": [
"https://www.itproportal.com/2012/05/01/workers-could-start-strike-at-foxconn-factory-in-brazil/, https://www.cnbc.com/id/100353348"
],
"actions": [
"protest"
],
"struggles": [
"working conditions"
],
"employment_types": [
"blue_collar_workers"
],
"description": "Thousands of FoxConn workers in Jundiai, Brazil protested dangerous working conditions outside of the company's local plant. Complaints included lack of water and air conditioning at facilities, covercrowded buses, and low quality food in the cafeterias.",
"online": null,
"locations": [
"jundiai-brazil"
],
"companies": [
"foxconn"
],
"workers": 1000,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
-23.16559635,
-46.94674960550789
]
],
"addresses": [
"Foxconn, Avenida Marginal, Jardim Tannus, Aeroporto, Jundia\u00ed, Regi\u00e3o Imediata de Jundia\u00ed, Regi\u00e3o Geogr\u00e1fica Intermedi\u00e1ria de Campinas, S\u00e3o Paulo, Regi\u00e3o Sudeste, 13212-010, Brasil"
]
},
{
"id": 23,
"date": "2012/06/05",
"sources": [
"https://www.voanews.com/east-asia/outside-glitzy-taiwan-trade-show-workers-fight-pay-and-rest"
],
"actions": [
"protest"
],
"struggles": [
"pay_and_benefits",
"working conditions"
],
"employment_types": [
"white_collar_workers",
"blue_collar_workers"
],
"description": "Outside of Taiwan's Computex trade show, labor groups protested poor working conditions and inadequate pay for both white-collar and blue-collar workers",
"online": null,
"locations": [
"taipei-taiwan"
],
"companies": null,
"workers": null,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
25.0375198,
121.5636796
]
],
"addresses": [
"\u81fa\u5317\u5e02, Taiwan"
]
},
{
"id": 24,
"date": "2012/10/01",
"sources": [
"https://www.engadget.com/2012/10/09/multiple-foxconn-labor-disputes-disrupt-iphone-production/?guccounter=1"
],
"actions": [
"strike"
],
"struggles": [
"working conditions"
],
"employment_types": [
"blue_collar_workers"
],
"description": "FoxConn workers in Zhengzhou held walkouts on three separate days to protest working conditions at the plant. News outlets also report workers have been purposefully scratching newly manufactured iPhones in protest. China Labor Watch estimates that 3,000 workers took part in the walkouts.",
"online": null,
"locations": [
"zhengzhou-china"
],
"companies": [
"foxconn"
],
"workers": 3000,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
34.7284406,
113.7595316
]
],
"addresses": [
"Foxconn Technology Group, \u7ecf\u5317\u4e8c\u8def, \u5546\u90fd\u8def\u8857\u9053, \u5703\u7530\u4e61, \u7ba1\u57ce\u56de\u65cf\u533a, \u90d1\u5dde\u5e02, \u6cb3\u5357\u7701, 450046, China \u4e2d\u56fd"
]
},
{
"id": 25,
"date": "2013/02/06",
"sources": [
"https://www.newscientist.com/article/mg21729036-200-crowdsourcing-grows-up-as-online-workers-unite/, https://prospect.org/article/demand-and-demanding-their-rights"
],
"actions": [
"protest"
],
"struggles": [
"pay_and_benefits",
"working conditions"
],
"employment_types": [
"gig_workers"
],
"description": "Mechnical Turk workers have adopted a platform named Turkopticon, which allows them to review tasks and requestors on the platform. Turkopticon was created through a collaboration between a UC Irvine computer scientist and a union leader for IG Metall.",
"online": null,
"locations": [
"worldwide"
],
"companies": [
"amazon",
"mechanical_turk"
],
"workers": null,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": null,
"addresses": null
},
{
"id": 26,
"date": "2013/03/15",
"sources": [
"http://allthingsd.com/20130315/uber-drivers-protest-outside-the-companys-san-francisco-headquarters/"
],
"actions": [
"protest"
],
"struggles": [
"pay_and_benefits"
],
"employment_types": [
"gig_workers"
],
"description": "A group of approximately 30 Uber drivers protested outside of the company's San Francisco headquarters to protest lowered pay and lack of job security, including the firing of 500 drivers over the last month. ",
"online": null,
"locations": [
"san francisco-california-usa"
],
"companies": [
"uber"
],
"workers": 30,
"tags": [
"drivers"
],
"author": [
"nataliyaned"
],
"latlngs": [
[
37.7899898,
-122.3999799
]
],
"addresses": [
"Uber, 555, Market Street, Financial District, San Francisco, San Francisco City and County, California, 94105, United States of America"
]
},
{
"id": 27,
"date": "2013/05/19",
"sources": [
"https://www.spiegel.de/international/business/amazon-and-other-us-corporations-flout-german-labor-laws-a-900615.html"
],
"actions": [
"strike"
],
"struggles": [
"pay_and_benefits"
],
"employment_types": [
"blue_collar_workers"
],
"description": "Amazon workers at two German facilities (Bad Hersfeld and Leipzig) walked off the job to protest low wages and the company's refusal to sign a collective bargaining agreement for the retail sector. Der Speigel reports that this is the 'first strike in the online retail giant's history'.",
"online": null,
"locations": [
"bad hersfeld-germany",
"leipzig-germany"
],
"companies": [
"amazon"
],
"workers": null,
"tags": null,
"author": [
"nataliyaned"
],
"latlngs": [
[
50.8453279,
9.678334853465138
],
[
51.3622584,
12.452329749225527
]
],
"addresses": [
"Amazon Logistik GmbH, 1, Eichhof, Bad Hersfeld, Landkreis Hersfeld-Rotenburg, Hessen, 36251, Deutschland",
"Amazon, 1, Amazonstra\u00dfe, Paunsdorf, Ost, Leipzig, Sachsen, 04347, Deutschland"
]
},
{
"id": 28,
"date": "2013/07/04",
"sources": [
"https://uk.reuters.com/article/us-usa-security-internet-protest/internet-sites-join-july-4-protest-against-surveillance-idukbre9630o620130704"
],
"actions": [
"protest"
],
"struggles": [
"ethics"
],
"employment_types": [