-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreprocessed_mental-heath-in-tech.csv
We can't make this file beautiful and searchable because it's too large.
1468 lines (1458 loc) · 841 KB
/
preprocessed_mental-heath-in-tech.csv
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
self_employed,company_size,tech_company,mh_benefits,aware_mh_options,discussed_mh_employer,mh_resources,anonymity_protected,leave_request_mh,discuss_mh_neg,discuss_ph_neg,comfort_discuss_coworkers,comfort_discuss_supervisor,employer_takes_mh_seriously,observed_neg_consequences_coworkers,previous_employers,prev_employers_provided_mh,aware_options_prev_employers_mh,discussed_mh_prev_employers,resources_prev_employers_mh,anonymity_prev_employers_mh,discuss_mh_prev_employers_neg,discuss_ph_prev_employers_neg,willing_discuss_mh_prev_coworkers,willing_discuss_mh_prev_supervisor,prev_employers_take_mh_seriously,observed_neg_consequences_prev_coworkers,bring_up_ph_interview,why_not_ph_interview,bring_up_mh_interview,why_not_mh_interview,identified_mh_issue_hurt_career,coworkers_view_negatively_mh_issue,willing_share_friends_family_mh_illness,observed_unsupportive_response_mh_workplace,family_history_mh,had_mh_disorder_past,currently_have_mh_disorder,diagnosed_mh_condition_by_professional,sought_treatment_mh_professional,interfere_with_work_treated_effectively_mh,interfere_with_work_not_treated_effectively_mh,age,gender,country_live,country_work,work_position,work_remotely,tech_flag
0,26-100,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Very easy,No,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),I don't know,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,No,Yes,No,Yes,0,Not applicable to me,Not applicable to me,39.0,male,UK,UK,Back-end Developer,Sometimes,1
0,6-25,1.0,No,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"Yes, they all did",I was aware of some,None did,Some did,"Yes, always",None of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,Maybe,"It would depend on the health issue. If there is a health issue that would not immediately affect my job performance, such as diabetes, I would not bring it up during the interview. If it was something more severe, such as narcolepsy, I might bring it up depending on how controlled it was.",No,"While mental health has become a more prominent issue recently, I feel like there is still a lot of stigma surrounding it. At this point, with our culture, I would not bring it up. I hope that within the next 20-30 years that stigma will be gone and it can be brought up safely in an interview.","No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,29.0,male,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,6-25,1.0,No,No,No,No,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,Some of them,Yes,"They would provable need to know, to Judge if I can do my job or not. ",Yes,"Stigma, mainly. ",Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Maybe,No,No,1,Not applicable to me,Not applicable to me,38.0,male,UK,UK,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Yes,"old back injury, doesn't cause me many issues but occasionally impacts my ability to work at desk ",Maybe,would not if I was not 100% sure that the disclosure would not affect my application,"Yes, I think it would",Maybe,Neutral,No,No,Yes,Yes,Yes,1,Sometimes,Sometimes,43.0,male,UK,UK,Supervisor/Team Lead,Sometimes,0
0,6-25,0.0,Yes,Yes,No,No,No,Neither easy nor difficult,Yes,Maybe,Maybe,No,No,No,1,I don't know,N/A (not currently aware),Some did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Maybe,"Depending on the interview stage and whether I required an accommodation, I would",No,I don't know,"Yes, I think it would",Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,43.0,female,USA,USA,Executive Leadership|Supervisor/Team Lead|Dev Evangelist/Advocate|DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,1.0,Yes,I am not sure,No,Yes,Yes,Somewhat easy,Yes,Yes,Maybe,Yes,No,Yes,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Yes,If it would potentially affect my ability to do the job or might require special equipment/etc then it would only be fair and honest.,Maybe,It would depend on the field & what I knew of the employer.,"Yes, I think it would",Maybe,Somewhat open,"Yes, I experienced",No,No,Yes,No,1,Not applicable to me,Often,42.0,male,UK,UK,DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer|Designer,Sometimes,1
0,26-100,1.0,I don't know,No,No,No,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,None did,Some did,I don't know,None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers",Some did,None of them,Yes,I want to gauge their ability to support this issue.,Yes,"I want to gauge their ability to support, understand and empathize with my situation.","Yes, I think it would","No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,Yes,No,Yes,Yes,Very easy,No,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,I feel it's irrelevant.,No,Same reason.,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,37.0,female,USA,USA,Dev Evangelist/Advocate|Back-end Developer,Always,1
0,26-100,0.0,I don't know,No,No,No,I don't know,Very difficult,Yes,Yes,Yes,Maybe,No,No,1,I don't know,N/A (not currently aware),Some did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,Makes me a less attractive candidate.,Maybe,"Only if I felt I required accommodation. Even then, reluctantly because it makes me a less attractive candidate.",Maybe,"Yes, they do",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,44.0,female,USA,USA,Support|Back-end Developer|One-person shop,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,"Generally speaking, and this isn't always the case, physical health issues don't carry the same stigma as mental ones.",Maybe,"It really depends on the person, the employer, and how comfortable I felt discussing the issue.",Maybe,"No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,30.0,male,USA,USA,One-person shop|Front-end Developer|Back-end Developer,Always,1
0,26-100,1.0,Yes,I am not sure,Yes,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,Yes,"Being honest upfront shows respect for the future employer. If they see that as a stumbling block in hiring you, then it probably wouldn't have been a good fit in the long run anyways.",Yes,Same reason as above.,"No, I don't think it would",Maybe,Very open,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Sometimes,Often,28.0,male,USA,USA,Front-end Developer,Never,1
0,100-500,0.0,Yes,Yes,No,I don't know,I don't know,Somewhat difficult,Yes,No,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,It isn't relevant to my ability as a programmer.,No,It isn't relevant to my ability as a programmer.,"Yes, I think it would","Yes, I think they would",Not open at all,No,Yes,Yes,Yes,Yes,1,Never,Rarely,34.0,male,USA,USA,Executive Leadership,Sometimes,0
0,100-500,1.0,Yes,I am not sure,No,No,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",None of them,None of them,"Yes, at all of my previous employers",Some of my previous employers,"Yes, they all did",None of them,No,Seems highly unlikely to be relevant,No,Also seems highly likely to be irrelevant at the point that I am in an interview. ,"No, it has not","No, they do not",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,30.0,female,USA,USA,Supervisor/Team Lead|Dev Evangelist/Advocate|Back-end Developer|Front-end Developer,Always,1
0,100-500,0.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,No,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,None did,Some of them,Yes,I might have special needs that would be impossible to hide.,No,Too private.,Maybe,"Yes, I think they would",Not open at all,"Yes, I experienced",No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,44.0,male,Canada,Canada,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,I don't know,Yes,Very easy,No,No,Yes,Yes,No,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,No,Because of the potential for discrimination,No,Because Of the potential for discrimination,"No, it has not","No, they do not",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,35.0,male,USA,USA,Designer,Always,0
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,I don't think it's appropriate to discuss those issues during early interviews. I'd wait to discuss with HR after I have a feel for what's going on.,Maybe,I don't think it's appropriate to discuss those issues during early interviews. I'd wait to discuss with HR after I have a feel for what's going on.,Maybe,Maybe,Neutral,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,52.0,male,USA,USA,Other|Executive Leadership,Sometimes,0
0,26-100,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Very difficult,Maybe,No,Maybe,Maybe,No,No,1,"No, none did","No, I only became aware later",None did,None did,No,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Yes,Fear of discrimination,No,I have found their reaction to be a good indicator of whether our ideals are aligned / whether it's a good fit for me as a workplace.,"Yes, it has","No, I don't think they would",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,32.0,female,Canada,Canada,Front-end Developer,Always,1
0,500-1000,1.0,No,No,No,No,I don't know,I don't know,Maybe,No,Yes,Maybe,No,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,UK,UK,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,No,bad idea ,"Yes, it has","Yes, they do",Somewhat not open,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Often,Often,25.0,female,USA,USA,One-person shop,Always,0
0,100-500,0.0,I don't know,No,No,No,I don't know,I don't know,Yes,No,No,No,Yes,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,Physical impairments aren't traditionally stigmatized. Far less judgements and resulting talk behind backs compared to mental,No,Stigmatized. Uncomfortable for both parties. Mental instability frowned upon in technical roles. ,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,31.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,Very easy,No,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,"Yes, they all did",None of them,Maybe,It might affect their opinion of me.,No,I feel it would definitely affect my chances at being accepted.,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,Yes,Maybe,No,No,0,Not applicable to me,Not applicable to me,26.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,0.0,Yes,No,Yes,I don't know,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",None of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,I don't have any,No,I don't have any,Maybe,Maybe,Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,Other,Never,0
0,26-100,1.0,Yes,Yes,No,No,I don't know,Very easy,Maybe,Maybe,Maybe,No,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,depends on the illness,Maybe,Stigma,Maybe,"No, I don't think they would",Neutral,No,I don't know,Maybe,No,No,0,Not applicable to me,Not applicable to me,25.0,male,Germany,Germany,Back-end Developer,Sometimes,1
0,1-5,1.0,Yes,Yes,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,"Like all interviews, I feel like not putting your ""best foot"" forward puts you at a disadvantage.",No,I feel like this would put you out of the running for a position almost immediately. Or at least be used as a negative mark against you.,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,No,Yes,1,Sometimes,Often,33.0,male,Canada,Canada,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,Only if it would impact my performance to the job.,Maybe,"Again, only if it could effect my job performance",Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,100-500,0.0,Yes,Yes,I don't know,Yes,Yes,Very easy,No,No,Maybe,Maybe,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Very open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,42.0,male,Germany,Germany,Supervisor/Team Lead|Support|Back-end Developer,Never,1
0,26-100,0.0,No,No,No,No,I don't know,Very difficult,Yes,Yes,No,No,No,No,1,"No, none did",I was aware of some,Some did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,Some did,None of them,No,"I'm afraid I wouldn't be hired for the job, even when the physical issue would not have been relevant for my work.",Maybe,Same reason as above.,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Rarely,Often,27.0,male,Netherlands,Netherlands,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,100-500,1.0,I don't know,No,No,No,I don't know,Somewhat difficult,No,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,No,No,Maybe,No,1,Sometimes,Often,35.0,male,Germany,Germany,Back-end Developer,Never,1
0,500-1000,0.0,I don't know,No,Yes,Yes,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Maybe,I don't know,Yes,1,I don't know,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Maybe,I'd be wary of them seeing potential time out for appointments etc as a negative,No,I think most employers would straight up discount me for that,"Yes, I think it would","No, I don't think they would",Neutral,"Yes, I observed",Yes,Yes,Maybe,No,1,Sometimes,Often,34.0,female,UK,UK,Other,Never,0
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,I wouldn't want to be judged against someone healthy,No,See above,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,32.0,other,UK,UK,Other|Supervisor/Team Lead|Support|Back-end Developer|Designer,Never,1
0,100-500,1.0,Not eligible for coverage / N/A,Yes,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Depending on the exact nature of the issue I might think they wouldn't want to hire me,Maybe,Depending on the exact nature of the issue I might think they wouldn't want to hire me,"Yes, I think it would",Maybe,Very open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,32.0,other,Germany,Germany,Back-end Developer,Never,1
0,100-500,1.0,Yes,Yes,No,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",None did,Some did,"Yes, always",None of them,None of them,"Yes, at all of my previous employers",I don't know,"Yes, they all did",None of them,No,Seems unnecessary,No,Seems unnecessary. It's asinine to bring up unnecessary conversation ever. ,"No, I don't think it would","No, they do not",Very open,No,No,Yes,Yes,Yes,1,Often,Sometimes,30.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,>1000,1.0,I don't know,I am not sure,No,No,I don't know,Very easy,Maybe,No,No,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,It doesn't have any bearing on my ability to accomplish the job when properly coped with.,No,"Again, when properly coped with it shouldn't affect my ability to do the job. I expect, as with physical health issues, I'll be allowed time needed when coping is necessary.",Maybe,Maybe,Somewhat open,No,I don't know,Yes,Maybe,No,0,Rarely,Often,31.0,male,USA,USA,One-person shop|Front-end Developer|Back-end Developer|Dev Evangelist/Advocate|Other,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,"Yes, at all of my previous employers",I don't know,None of them,No,Completely dependant on the relevance of the mental health issue and it's impact on the work being applied for. ,Maybe,Same as before ,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,other,other,Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,I am not sure,No,I don't know,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,It's good to be upfront about everything.,Yes,It's no different from a physical health issue. If it can potentially affect my performance then I should be clear.,"No, I don't think it would","No, I don't think they would",Somewhat not open,Maybe/Not sure,No,Yes,Yes,No,0,Not applicable to me,Sometimes,36.0,male,UK,UK,Supervisor/Team Lead|DevOps/SysAdmin|Support|Back-end Developer,Sometimes,1
0,100-500,1.0,No,No,No,Yes,I don't know,Somewhat easy,Maybe,No,No,No,I don't know,Yes,1,"No, none did",N/A (not currently aware),None did,None did,Sometimes,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,No,I don't think is the place nor the time for this,No,same as before,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,Germany,Germany,Executive Leadership|Front-end Developer|Back-end Developer|Sales|Supervisor/Team Lead,Never,1
0,26-100,1.0,Yes,I am not sure,No,Yes,Yes,Very easy,No,No,Yes,Maybe,Yes,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,"These days I'm more comfortable expressing anything that could be a factor in getting work done. It helps me screen employers: if anything is an insurmountable problem for them, then it is clearly not a place I want to work.",Yes,"Same answer as for physical health issues, though admittedly I'm a little slower to bring up mental health concerns due to stigma fears.",Maybe,Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,44.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,No,Yes,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,No,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"Yes, I think they would",Somewhat open,"Yes, I observed",No,No,Maybe,No,0,Never,Sometimes,29.0,male,UK,UK,Front-end Developer,Never,1
0,100-500,1.0,No,I am not sure,Yes,No,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Very open,No,Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,29.0,male,UK,UK,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,Yes,I don't know,I don't know,I don't know,Neither easy nor difficult,Maybe,No,Yes,Yes,I don't know,Yes,1,Some did,"No, I only became aware later",None did,Some did,I don't know,Some of them,Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,Some of them,Yes,The employer needs to know that I would need support in order to do my best work for them,Yes,Because my employer needs to support me in order to get the best work possible from me,Maybe,Maybe,Very open,"Yes, I observed",I don't know,No,No,No,0,Not applicable to me,Not applicable to me,44.0,male,Canada,Canada,Support|Other,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","No, I only became aware later",None did,Some did,"Yes, always",Some of them,Some of them,"Yes, at all of my previous employers",Some of my previous employers,None did,Some of them,Maybe,"An employer weighs the impact to quality/availability of work and the cost to productivity as well as the cost (in my case) to ensure that I have the proper equipment (I'm obese). Unfortunately, it's not something that's avoidable for the employer to notice.",No,"In most regards it doesn't concern the employer, if it becomes an issue then I'd be willing to discuss it.","Yes, I think it would","No, I don't think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,No,0,Rarely,Sometimes,34.0,male,USA,USA,One-person shop|Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,Yes,I am not sure,No,I don't know,Yes,Somewhat easy,No,No,Maybe,Yes,No,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"For me, it depends on how the interview is going - if it's clear that it's a dead end, I would not bring it up.",Maybe,"For me, it depends on how the interview is going - if it's clear that it's a dead end, I would not bring it up.","No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,No,1,Rarely,Sometimes,40.0,male,USA,USA,Other,Always,0
0,>1000,1.0,Yes,I am not sure,No,No,Yes,Somewhat difficult,Yes,Maybe,Yes,Yes,No,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,Some of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",None did,None of them,Maybe,Depends on the social perception of the issue.,No,Too easy to map mental health to ability to do the job.,Maybe,Maybe,Very open,Maybe/Not sure,Yes,Yes,Yes,No,1,Often,Often,46.0,female,Netherlands,Netherlands,Supervisor/Team Lead|Other,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would","No, I don't think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,No,1,Sometimes,Often,28.0,male,other,other,DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,>1000,0.0,No,I am not sure,No,No,No,Somewhat difficult,Maybe,No,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,41.0,male,USA,USA,Back-end Developer,Never,1
0,6-25,1.0,Yes,Yes,I don't know,Yes,I don't know,Somewhat easy,Maybe,Maybe,Maybe,Maybe,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Seems like it would deter them from hiring me.,No,Seems like it would deter them from hiring me.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,33.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,"Yes, at all of my previous employers",Some of my previous employers,I don't know,Some of them,Yes,I would bring up a physical health issue with a prospective employer if I were to find that the job required tasks that I was unable to complete or safely attempt that could cause injury to myself or others. ,Maybe,"I think the only time would be with ""on call"" work (i.e. Being available 24/7 with no set schedule) as this causes far too much stress in my life. I refuse, and have quit, jobs that rely on this method. The job that I quit was promised to have a schedule in the interview. ","No, I don't think it would",Maybe,Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,32.0,male,USA,USA,Other,Sometimes,0
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,I don't know,Maybe,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"If the issue would impact my performance without some form of concessions/consideration on the party of the employer, I would, otherwise I wouldn't. ",Maybe,"There's likely nothing they could do to mitigate any performance problems as a result of a mental health issue, so I probably wouldn't discuss. ",Maybe,Maybe,Somewhat not open,No,I don't know,Maybe,Maybe,No,0,Not applicable to me,Sometimes,45.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",I don't know,I don't know,Some of them,Yes,"Because I'd want to know if they can provide an ergonomic keyboard, or are happy with a worker plugging their own keyboard into their computers.",Yes,Would want to know if management support is going to work.,"No, I don't think it would",Maybe,Neutral,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Not applicable to me,Not applicable to me,43.0,male,UK,UK,Other,Sometimes,0
0,6-25,1.0,Yes,Yes,No,No,Yes,Very easy,No,No,Yes,Maybe,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,"Yes, they all did","Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,None of their business,No,Not related to my qualifications or skills,Maybe,Maybe,Somewhat open,No,No,Maybe,Yes,Yes,1,Often,Often,37.0,female,USA,USA,Supervisor/Team Lead,Always,0
0,26-100,1.0,No,No,No,No,I don't know,Somewhat easy,Maybe,Maybe,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Fear of discrimination,No,Stigma,"Yes, it has",Maybe,Neutral,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Sometimes,Often,37.0,male,Australia,Australia,Executive Leadership,Never,0
0,6-25,1.0,Yes,Yes,No,No,Yes,Very easy,Maybe,Maybe,Yes,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,Fear of discrimination,Yes,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,USA,USA,Front-end Developer|Back-end Developer|Executive Leadership,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Yes,simply because it's important for them to be aware of the situation when I would have physical issues.,Maybe,"mental issues are a bit stigmatic, everyone knows it's there but no-one wants to deal with it. A broken leg isn't that big a deal, but a broken mind is abstract.",Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,Netherlands,Netherlands,Supervisor/Team Lead|Back-end Developer|Front-end Developer|One-person shop,Sometimes,1
0,>1000,1.0,Yes,Yes,No,Yes,I don't know,Somewhat difficult,Maybe,Maybe,Maybe,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"I understand that, while they might consciously not act differently if I had a physical issue, I'm not at all convinced that people in tech, even those who know what Cognitive Dissonance means, will actually take steps to avoid it.",No,"I understand that, while they might consciously not act differently if I had a mental health issue, I'm not at all convinced that people in tech, even those who know what Cognitive Dissonance means, will actually take steps to avoid it. Furthermore, there's a huge stigma behind it.",Maybe,"No, I don't think they would",Neutral,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Sometimes,36.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin,Sometimes,1
0,500-1000,0.0,Yes,Yes,No,No,I don't know,I don't know,Maybe,No,Maybe,Maybe,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"Because, if it were a physical health issue that might affect my job performance, it'd be difficult to hide and a potential might resent the fact that I wasn't forthcoming about it in an interview.",No,"Because, if it were a mental health issue that might affect my job performance, it may be easy to hide, while being forthcoming about it might impact my likelihood to get the job in the first place.","Yes, I think it would",Maybe,Neutral,No,No,Maybe,Maybe,Yes,1,Rarely,Often,34.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Always,1
0,>1000,0.0,Yes,No,Yes,Yes,I don't know,Somewhat difficult,Maybe,Maybe,Yes,Yes,I don't know,No,1,Some did,N/A (not currently aware),Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,"Yes, all of them",No,It's too early - I don't want to discuss potential deal breakers until they've decided they want me. ,No,Same reasons. ,Maybe,"No, I don't think they would",Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,female,USA,USA,Other,Sometimes,0
0,26-100,1.0,Yes,Yes,No,Yes,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Maybe,Maybe,Yes,1,Rarely,Often,30.0,male,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,100-500,0.0,Yes,Yes,No,I don't know,Yes,Somewhat difficult,Maybe,No,Maybe,Yes,No,No,1,Some did,"No, I only became aware later",None did,Some did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Somewhat not open,Maybe/Not sure,Yes,Maybe,Maybe,No,0,Sometimes,Often,32.0,male,Canada,Canada,Supervisor/Team Lead,Never,0
0,6-25,0.0,Yes,I am not sure,No,No,I don't know,Somewhat difficult,No,No,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,It would depend on the issue and the employer.,No,The stigma of the topic.,"No, I don't think it would",Maybe,Somewhat not open,No,I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,40.0,female,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,0.0,I don't know,No,No,No,I don't know,Neither easy nor difficult,Maybe,No,Maybe,No,I don't know,No,1,"No, none did",I was aware of some,None did,None did,I don't know,Some of them,None of them,Some of my previous employers,I don't know,None did,None of them,Yes,I wouldn't want to risk leaving a current job position for one where such things could be an issue.,Maybe,"If it got in the way of work, it if I needed some accommodation, I would, but, otherwise, it wouldn't seem worth it.",Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,40.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,I am not sure,Yes,Yes,I don't know,Neither easy nor difficult,No,No,Maybe,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,"if the physical issue is obvious at work, it's better not to try to hide.",Maybe,"same thing: If it has impact or if it's visible at work, why trying to hide.","Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,I don't know,No,Maybe,No,0,Sometimes,Sometimes,41.0,male,other,other,Back-end Developer,Sometimes,1
0,26-100,0.0,Not eligible for coverage / N/A,No,No,No,I don't know,Very difficult,Yes,No,No,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",None of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Yes,If it were relevant to the role I would mention it,Maybe,"If it would have a direct impact on my ability to perform the role I would feel compelled to mention it, but depending on how understanding I expected the employer to I might not, due to the negative consequences. ","Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,No,Yes,Maybe,Yes,1,Rarely,Often,27.0,male,UK,UK,DevOps/SysAdmin,Never,1
0,26-100,1.0,Yes,Yes,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"Yes, at all of my previous employers",None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,No,No because it might not get me the job ,No,Won't get the job. ,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,29.0,male,other,other,Front-end Developer|Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,"Yes, always",I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Disclosing that cannot help you get the job,No,Disclosing that cannot help you get the job,Maybe,Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,UK,UK,Other,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,None of their business.,No,Stigma,"No, I don't think it would","No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,Netherlands,Netherlands,Supervisor/Team Lead|Back-end Developer|One-person shop,Sometimes,1
0,6-25,0.0,No,Yes,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,No,Yes,1,"No, none did",I was aware of some,None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,35.0,female,USA,USA,Supervisor/Team Lead,Never,0
0,>1000,1.0,Yes,I am not sure,Yes,Yes,I don't know,Neither easy nor difficult,Maybe,Maybe,No,No,I don't know,No,1,"No, none did","Yes, I was aware of all of them",Some did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,Yes,Fear of discrimination,No,Interviews are largely about knowledge / mental capacity. Could be seen as a weaker mental capacity.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Often,Often,29.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,Yes,I am not sure,No,I don't know,Yes,I don't know,Maybe,Maybe,No,Maybe,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Somewhat open,No,Yes,Maybe,No,No,0,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Front-end Developer,Never,1
0,26-100,0.0,No,Yes,No,I don't know,Yes,Very easy,No,No,No,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,"Yes, they all did",I don't know,None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers","Yes, they all did",None of them,No,It should not effect they way how I work. So it should not have any negative things for the new boss,No,It should not effect they way how I work. So it should not have any negative things for the new boss,Maybe,"Yes, I think they would",Very open,No,I don't know,Yes,Maybe,Yes,1,Rarely,Often,27.0,male,Netherlands,Netherlands,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Yes,because it might affect my working hours (visiting doctors etc),Maybe,Only if it would affect my work somehow,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,Yes,No,No,1,Not applicable to me,Not applicable to me,39.0,male,other,other,Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,To be honest I guess and not to end up with suprises,Maybe,Might have negative influence on getting a job or not,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,other,other,Support,Sometimes,0
0,6-25,0.0,I don't know,No,No,No,I don't know,Very difficult,Yes,Maybe,No,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Could only hurt my chances,No,Could only hurt my chances,"Yes, I think it would","Yes, I think they would",Not open at all,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,46.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,1-5,1.0,No,No,No,I don't know,I don't know,Very easy,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,Honesty works.,Yes,Again: honesty.,Maybe,"No, I don't think they would",Very open,No,No,Yes,No,Yes,1,Not applicable to me,Not applicable to me,40.0,male,Netherlands,Netherlands,Front-end Developer|Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,No,No,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"For physical health issues that may not impact my daily job, I don't feel the need to divulge them to a prospective employer.",No,I feel uncomfortable discussing such issues with someone I've just met.,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Maybe,Maybe,No,0,Not applicable to me,Sometimes,37.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer,Always,1
0,26-100,1.0,No,No,No,No,I don't know,Very easy,No,No,Maybe,Yes,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Maybe,Fear of discrimination,No,"Don't know, feeling",Maybe,"No, I don't think they would",Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,41.0,male,Netherlands,Netherlands,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,He could choose to not hire me because of that ,No,Stigma,"No, I don't think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,No,0,Not applicable to me,Not applicable to me,19.0,male,other,other,Back-end Developer,Never,1
0,6-25,1.0,I don't know,I am not sure,No,No,No,Somewhat easy,No,No,Yes,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,Some did,No,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"depends if it is relevant. If it's none of their business, then not.",Maybe,It's a weakness; and you mostly want to talk about your strenghts,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,female,Netherlands,Netherlands,Front-end Developer,Never,1
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,No,No,No,No,No,1,Some did,I was aware of some,I don't know,Some did,Sometimes,I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Companies are more equipped to accommodate physical health issues and it looks bad if they don't. ,No,I don't think companies are able or willing to deal with a mental health issue. I feel like bringing it up Cottle negatively affect the decision to hire me. ,Maybe,Maybe,Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,USA,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,No,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,I would prefer be honest and up-front rather than find out the employer is not supportive down the road,Maybe,"Again, to ensure that the employer is not going to turn out to be unsupportive of employee needs.",Maybe,"No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,33.0,male,USA,USA,Supervisor/Team Lead|Dev Evangelist/Advocate|Back-end Developer,Always,1
0,1-5,1.0,Yes,Yes,No,I don't know,Yes,I don't know,No,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,I wouldn't know whether it would affect my changes of getting the job.,No,I wouldn't know whether it would affect chances of getting employed.,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,21.0,male,UK,UK,Back-end Developer|DevOps/SysAdmin,Never,1
0,1-5,1.0,No,No,No,No,I don't know,Very difficult,Maybe,Maybe,No,No,I don't know,Yes,1,Some did,I was aware of some,None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,I live in a country where they only care about what physicians tell them in a pre-contract exam.,No,"I don't think they would hire me, in the first place.",Maybe,Maybe,Somewhat not open,"Yes, I experienced",Yes,Yes,Yes,No,0,Often,Often,36.0,male,other,other,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",I was aware of some,None did,None did,"Yes, always",I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Depends if it affected the job,No,Only if I felt it would impact my productivity,Maybe,Maybe,Somewhat not open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Never,Sometimes,39.0,male,Canada,Canada,Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,I don't know,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"If it relates to workspace design (eg, special ergonomic needs) or necessary schedule (eg, can't work for 8 hours straight)",Maybe,"If it relates to schedule availability, etc. (Eg, can't work during certain hours, need frequent breaks, etc.)","No, I don't think it would","No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,Dev Evangelist/Advocate|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",I don't know,None did,"Yes, always",I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Very open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,36.0,male,other,other,One-person shop|Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,No,No,I don't know,I don't know,Neither easy nor difficult,Maybe,No,No,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,"If the health issue would not impact my performance, then I may not bring it up. ",Yes,I would bring up any issue that would affect my performance of that jobs duties ,Maybe,Maybe,Somewhat not open,"Yes, I experienced",No,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,45.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Never,1
0,26-100,1.0,I don't know,No,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,No,No,1,I don't know,I was aware of some,None did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,No,Mental health is still viewed as a taboo.,"Yes, I think it would",Maybe,Somewhat open,No,No,Maybe,Maybe,No,0,Not applicable to me,Rarely,41.0,male,Canada,Canada,Back-end Developer|Supervisor/Team Lead,Never,1
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,No,No,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,"I would be worried that it might affect my job application even though I am aware that they are not legally allowed to do so. However, it would be difficult to determine / prove if that was the case or not.","Yes, it has","Yes, they do",Neutral,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Sometimes,Often,35.0,male,UK,UK,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,Fear of discrimination,Maybe,Stigma,"No, I don't think it would","No, they do not",Somewhat open,No,I don't know,Maybe,Maybe,Yes,1,Sometimes,Often,30.0,male,USA,USA,Front-end Developer|Back-end Developer|Sales|Executive Leadership,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,Yes,Yes,Yes,Very easy,No,No,Maybe,Maybe,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Because it can be seen as a weakness and they may chose another applicant over me because of it.,No,Because it can be seen as a weakness and they may chose another applicant over me because of it.,"No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,24.0,female,USA,USA,Back-end Developer,Sometimes,1
0,100-500,0.0,No,No,No,No,I don't know,I don't know,Maybe,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,Only would do it if I would believe it would have impact on my productivity.,No,Not sure how the employer would see the problem there's no information available for them or on the mental problems and how to deal with it.,Maybe,Maybe,Somewhat open,No,I don't know,Yes,No,Yes,1,Never,Sometimes,33.0,male,other,other,Other,Never,0
0,>1000,1.0,Yes,Yes,I don't know,Yes,I don't know,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",I don't know,"Yes, they all did",I don't know,Some of them,None of them,Some of my previous employers,I don't know,I don't know,None of them,No,bias,No,bias,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,Yes,Maybe,Yes,1,Rarely,Often,35.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,Yes,I don't know,I don't know,Neither easy nor difficult,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,Transparency,Maybe,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,No,Yes,No,0,Rarely,Sometimes,26.0,male,UK,UK,Supervisor/Team Lead,Sometimes,0
0,6-25,1.0,No,No,No,No,I don't know,Somewhat difficult,Yes,No,No,Yes,No,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",I don't know,Some did,None of them,Yes,Starting a job hiding something like this can be a really bad way to get the trust of the employees. ,Yes,Same response as the physical one.,Maybe,"Yes, I think they would",Not open at all,"Yes, I observed",No,No,No,No,0,Never,Sometimes,17.0,male,other,other,Front-end Developer,Always,1
0,6-25,0.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,No,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,"Yes, always",None of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,No,Yes,Yes,Yes,1,Sometimes,Often,29.0,female,USA,USA,Front-end Developer,Sometimes,1
0,100-500,1.0,Yes,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,None did,Sometimes,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,No,"My mental health issues are manageable outside
Of work, mostly, so I don't bring them up ","No, I don't think it would",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,26.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,Very easy,No,No,Maybe,Maybe,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did",I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,"Yes, they all did",Some of them,No,I would be suspicious that it would negatively effect their opinion of me as a potential employee / Bring down the superwoman factor a little.,No,Same as with the physical.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,36.0,female,USA,USA,Front-end Developer,Always,1
0,26-100,1.0,I don't know,I am not sure,Yes,I don't know,Yes,I don't know,No,No,No,No,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,I don't know,None did,None of them,Maybe,I've never been in a situation like this so it's hard to say. My answer might be different depending on the exact health issue.,Maybe,Again it's not a situation I've experienced so I think it would depend on the health issue and how comfortable I was with the potential employer.,Maybe,"No, I don't think they would",Somewhat open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,46.0,male,USA,USA,Back-end Developer|DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,No,0,Not applicable to me,Not applicable to me,39.0,male,Netherlands,Netherlands,One-person shop|Back-end Developer|Sales|Support|DevOps/SysAdmin|Dev Evangelist/Advocate|Supervisor/Team Lead|Executive Leadership|Other,Sometimes,1
0,100-500,1.0,Yes,Yes,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Unless it impacted my job I wouldn't ,No,They wouldn't hire me,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,28.0,female,USA,USA,Back-end Developer,Sometimes,1
0,500-1000,1.0,Yes,No,I don't know,I don't know,I don't know,Neither easy nor difficult,Maybe,No,No,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,US worker protections are lacking; proving a protected class as reason for non-hire is difficult,No,Same as before; lack of worker protections and proof that non-hire was result of disclosure of condition,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,40.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,I don't know,No,No,No,I don't know,I don't know,Yes,No,Maybe,Yes,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"I would expect an unconscious bias against someone whose employment involves extra risk of medical leave, accommodations, or expense. Even an employer with the best intentions might unintentionally favor the ""easier"" hire.",No,Stigma.,"Yes, I think it would",Maybe,Very open,No,I don't know,Yes,Yes,Yes,1,Often,Often,23.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,No,No,Yes,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,If it's relevant to the position ,Yes,If it was relevant to the position. ,Maybe,Maybe,Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,I don't know,I don't know,I don't know,Very easy,Maybe,Maybe,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,I prefer to use the interview as an opportunity to learn more about a potential employer and to showcase my skills.,No,Same answer as before. I prefer to use an interview as an opportunity to learn more about a potential employer and to showcase my skills. I wouldn't want to waste that valuable time on the minutiae of my health.,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Maybe,No,No,0,Not applicable to me,Not applicable to me,28.0,female,USA,USA,Designer,Sometimes,0
0,26-100,1.0,No,I am not sure,No,No,I don't know,Somewhat difficult,Yes,No,Maybe,Maybe,No,Yes,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"It _could_ way into being hired, instead of skills",No,"It _could_ way into being hired, instead of skills",Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Sometimes,27.0,male,Netherlands,Netherlands,Back-end Developer|DevOps/SysAdmin|Dev Evangelist/Advocate|Supervisor/Team Lead,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Only if it was very relevent would I share such information. Otherwise no reason to give black marks to myself.,No,I cannot see how sharing this information would benefit me.,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,No,Yes,Maybe,Yes,1,Often,Often,31.0,male,USA,USA,One-person shop|Front-end Developer|Back-end Developer,Always,1
0,26-100,1.0,Yes,Yes,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,No,No,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"if it were serious, I'd worry that it would prevent my being hired",Maybe,I don't have anything diagnosed specifically wrt my anxiety and depression. Sometimes I don't take it as seriously because of that.,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Maybe,No,1,Sometimes,Sometimes,39.0,female,USA,USA,Back-end Developer,Never,1
0,>1000,1.0,Yes,Yes,No,Yes,Yes,I don't know,Maybe,Maybe,Maybe,Maybe,No,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,"Yes, they all did","Yes, always",I don't know,"Yes, all of them","No, at none of my previous employers",I don't know,None did,None of them,Maybe,"If it was a protected disability thing, or if it just came up randomly. Or if it's not a chronic condition.",Maybe,"If I was ""recovered""",Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,No,Yes,Yes,1,Sometimes,Sometimes,34.0,female,USA,USA,Supervisor/Team Lead,Always,0
0,6-25,1.0,Yes,Yes,No,No,Yes,Very easy,No,No,No,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,I imagine that would prompt the interviewers to quickly disregard my resume.,No,I imagine that would prompt the interviewers to quickly disregard my resume.,"Yes, I think it would","No, I don't think they would",Somewhat not open,No,No,Yes,Yes,Yes,1,Rarely,Often,30.0,male,USA,USA,Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,"If it's relevant, because it would require changes to work hours or something like that, I would bring it up. If not, then it's not relevant in an interview.",Yes,"Again, if relevant to the work hours or similar.","No, I don't think it would","No, I don't think they would",Somewhat open,No,I don't know,Yes,Yes,Yes,1,Rarely,Often,30.0,male,other,other,Front-end Developer|Back-end Developer|Executive Leadership,Never,1
0,100-500,0.0,I don't know,No,No,I don't know,I don't know,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Yes,"I am to the point in my career where if I can't be honest with my employer, then I do not want to work for them.",Yes,"I am to the point in my career that if cannot be honest with my employer, then I don't want to work for them.",Maybe,Maybe,Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,Maybe,No,0,Not applicable to me,Not applicable to me,31.0,male,USA,USA,Designer,Sometimes,0
0,26-100,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",I don't know,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,Yes,?,No,None of their business,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,30.0,male,USA,USA,Back-end Developer,Always,1
0,>1000,1.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat difficult,Yes,No,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"I'd generally be able to cope/work despite physical health issues, but would doubt the interviewer would consider/believe that. I wouldn't trust them to avoid bias based on health concerns.",No,Same reasons. Doubt that interviewer would be able to avoid bias.,"Yes, I think it would",Maybe,Somewhat open,No,Yes,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,32.0,male,USA,USA,Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, it has","Yes, I think they would",Somewhat not open,"Yes, I observed",Yes,No,No,No,1,Never,Sometimes,22.0,male,other,other,Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Depends if it's going to have an impact on that particular job,Yes,"I suffer from burn-outs. If I'm ever willing to work for an employer again, this is something they need to be aware of in order to find the best way to avoid it.","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,0,Sometimes,Often,37.0,female,other,other,Back-end Developer,Always,1
0,26-100,0.0,Yes,Yes,No,Yes,Yes,I don't know,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,None of them,Maybe,Due to increased healthcare cost potential,Maybe,Would want them to know in case of potential impact on my work. But would be hesitant due to possible stigma associated with it ,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,51.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead,Sometimes,0
0,26-100,0.0,I don't know,No,No,No,I don't know,I don't know,No,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Depends on the vibe from the interview.,Maybe,Depends on the vibe and the type of work.,"No, it has not",Maybe,Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,26.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,N/A (not currently aware),None did,Some did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Yes,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Very open,"Yes, I observed",Yes,Yes,No,Yes,1,Never,Often,41.0,female,USA,USA,Front-end Developer,Sometimes,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,depends on the nature of the issue. i think it might bias them to look for reasons not to hire me or expect me to be a sub-par contributer,No,My internalized stigma is way too strong. ,"Yes, I think it would",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Never,Often,39.0,female,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,No,No,No,No,Neither easy nor difficult,Maybe,No,No,No,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,Sometimes,Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,43.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,500-1000,1.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,No,No,Yes,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Because I wouldn't want to work for a company who wouldn't support someone with a condition.,Yes,Because I wouldn't want to work for an employer who wouldn't hire someone with such a condition,Maybe,"No, I don't think they would",Very open,No,Yes,No,Maybe,No,0,Rarely,Rarely,30.0,male,UK,UK,Supervisor/Team Lead|Back-end Developer|DevOps/SysAdmin|Dev Evangelist/Advocate,Sometimes,1
0,26-100,1.0,Yes,Yes,Yes,I don't know,I don't know,Very easy,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,"Depends on the type of job, if it would affect my work, I would bring it up.",No,"I think there is a general feeling of ""you should be able to manage that"" via some employers and this is not where I would want to test that. I might bring up mental health coverage during an interview though.",Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,24.0,female,USA,USA,Designer,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,No,No,Yes,Yes,Yes,1,Not applicable to me,Not applicable to me,30.0,male,Netherlands,Netherlands,One-person shop|Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,26-100,0.0,No,Yes,No,No,I don't know,Somewhat difficult,Yes,Maybe,No,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,People take physical illnesses or injuries seriously. You don't have to look a certain way to be believed to have a physical health issue. People can see it so they believe it. They often can't blame you for it or think you're just making it up ,No,"Are you serious right now? I would never in a million years discuss my mental health issues. I don't need my new employers judging me off the bat and having a reason to not give me the job because someone equally qualified who doesn't over share and talk about their problems is given the job instead of me. I also am lucky that work is a place where I often function better than I do at home. Personally, I do better when I don't allow myself the option to give into depressive episodes at work. But that's just my experience. I've worked at companies where my supervisor knew I was dealing with depression and addiction recovery and it didn't help me at all. He didn't understand and I made it easier for myself to slack off. At my new job I haven't told anyone and Even though I think they'd be more supportive and understanding, I feel better that I keep my personal issues out of the work place. Though I understand completely that other people who have mental health issues are not as lucky to be as functional as I am. ","Yes, I think it would","No, I don't think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,28.0,female,Germany,Germany,Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,I don't know,None of them,No,"Unless it has a direct impact on my job, it's not their business, and I value my privacy.",No,"It would likely result in a negative opinion of me, and my ability to perform the job, and might also be communicated beyond the person performing the interview. It's not a potential employers business if it doesn't effect my ability to do the job, and I value my privacy.","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,48.0,female,USA,USA,One-person shop|Designer|Front-end Developer|Support,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"Chronic physical health issues often affect hiring decisions, even though employers won't say so. I'm diabetic, and have observed this to be true.",Maybe,"I assume that chronic mental health issues, like chronic physical health issues, would often affect hiring decisions, even though employers won't say so. I'm diabetic, and have observed discrimination on the physical health side of things.",Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Maybe,Maybe,No,1,Sometimes,Often,55.0,female,USA,USA,One-person shop|Front-end Developer|Back-end Developer|DevOps/SysAdmin,Always,1
0,1-5,0.0,I don't know,No,Yes,No,I don't know,Very difficult,Yes,Maybe,Yes,No,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did",Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,"I would if I got the impression it wouldn't count against me/the interviewer seemed empathetic to that scenario, because that condition might likely mean time away from work to address the issue and I would want to know the policies in place for employees with physical health issues, particularly for chronic illness. ",No,"It's a very personal thing, to talk about a mental health issue. It is harder to talk about because it forces me to tell you something that you otherwise might never know, unlike a physical ailment which could be visible or become visible over time without my consenting to share it. ",Maybe,Maybe,Somewhat open,"Yes, I observed",I don't know,Maybe,Maybe,No,1,Not applicable to me,Often,36.0,female,USA,USA,Other,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,Because it would impact the relationship (there might be adjustments needed to the work space for example) and I believe honesty up front to be the best approach.,Yes,Because it would impact the relationship (I might need certain freedom or personal space for example) and I believe honesty up front to be the best approach.,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,Netherlands,Netherlands,Other|Executive Leadership|Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,100-500,1.0,I don't know,No,I don't know,I don't know,I don't know,Very easy,Maybe,Maybe,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,It has nothing to do with my job skills. My interviewer does not need to know about it. ,Maybe,"Same reason, if it does not affect my job skills, interviewer does not need to know. Otherwise, I might tell about it. ",Maybe,"No, I don't think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,other,other,Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,No,No,No,No,Somewhat easy,Maybe,No,No,Maybe,Yes,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,Depends on what it is. ,No,I don't want to get passed over. ,"Yes, I think it would","Yes, I think they would",Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,44.0,female,USA,USA,Other,Sometimes,0
0,>1000,0.0,I don't know,I am not sure,No,I don't know,I don't know,Very difficult,Maybe,Maybe,No,Maybe,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Afraid of adding something negative to the balance sheet,No,Afraid to add something negative to the balance sheet,Maybe,Maybe,Somewhat open,No,I don't know,Yes,Maybe,Yes,1,Rarely,Sometimes,45.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,No,No,I don't know,I don't know,Somewhat difficult,Yes,Maybe,Maybe,No,No,No,1,Some did,I was aware of some,Some did,Some did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,"I would bring up a physical health issue only if negotiating from a position of strength, such as having multiple offers or being currently employed in a stable position.",No,There is zero upside to bringing it up. There is no foreseeable circumstance in which bringing it up forestalls a problem or leads to opportunity.,"Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I observed",I don't know,Yes,Maybe,Yes,1,Rarely,Often,45.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,500-1000,1.0,No,I am not sure,No,No,I don't know,Somewhat difficult,Yes,No,Maybe,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Yes,It's not a big deal,No,It carries a stigma,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Never,Sometimes,30.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,0.0,Yes,No,No,Yes,Yes,I don't know,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,It is not their concern unless it affects my ability to perform my job,No,I would be afraid it would jeopardize my chances,"Yes, I think it would",Maybe,Neutral,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Rarely,Rarely,34.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,I don't know,No,Yes,I don't know,I don't know,Neither easy nor difficult,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Would only bring it up if it affected my ability to do the job.,No,Would only bring it up if it affected my ability to do the job.,"No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,0.0,Yes,I am not sure,No,I don't know,Yes,I don't know,Maybe,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,"Unless it would impact my work, it's nobody's business. ",Maybe,"Again, unless it somehow directly impacts my work it's nobody's business","Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,26-100,1.0,Yes,No,No,I don't know,I don't know,I don't know,No,No,No,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",I don't know,None did,None of them,Maybe,Too personal,No,I think it could negatively impact my candidacy for the position.,Maybe,Maybe,Neutral,No,No,No,Maybe,Yes,1,Rarely,Sometimes,31.0,male,USA,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,Sometimes,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,"I figure it should be part of the conversation. They need all the facts before making a call, in the same ways I need to know if they can adjust for me.",Maybe,"Depends on the issue at hand. Would it affect my performance or would it require adjustments? Then, yes. If not, then I probably wouldn't.",Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,USA,USA,Other,Always,0
0,100-500,1.0,Yes,Yes,No,I don't know,I don't know,Somewhat difficult,Yes,No,No,No,No,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"Because despite all of the laws governing non discrimination, employers will go with what's easiest and come up with a different reason as to why they're not hiring you. Employees are ultimately resources to be leveraged, and companies don't want to get less for their money. ",No,Never. Absolutely never. This would be stigmatized to hell. ,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,29.0,female,USA,USA,Other,Sometimes,0
0,100-500,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,Some did,I was aware of some,I don't know,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,If it were relevant to job performance or required some sort of accommodation on their part,Maybe,"Same as above. Things like ""please send an agenda w/HR meetings, because anxiety"" usually come up after hire, not at interview time, IME",Maybe,"No, I don't think they would",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Sometimes,35.0,male,USA,USA,Back-end Developer,Sometimes,1
0,1-5,1.0,No,Yes,No,No,No,Very difficult,Maybe,Maybe,No,No,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,Sometimes,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Jeopardizes getting the job,No,Jeopardizes getting the job,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,42.0,female,Canada,Canada,Executive Leadership|Supervisor/Team Lead|Dev Evangelist/Advocate|DevOps/SysAdmin|Back-end Developer|Front-end Developer,Always,1
0,26-100,1.0,I don't know,No,No,I don't know,I don't know,I don't know,Yes,Maybe,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,I don't want health issues to affect how I am represented in an interview.,No,I do not want health issues to effect how I am perceived in an interview.,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,26.0,female,USA,USA,Supervisor/Team Lead|Front-end Developer,Sometimes,1
0,500-1000,1.0,Yes,No,No,I don't know,I don't know,I don't know,Maybe,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Risk of not getting an offer,Maybe,Risk of not getting an offer,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Maybe,Maybe,Yes,1,Sometimes,Sometimes,36.0,female,USA,USA,Front-end Developer,Always,1
0,26-100,1.0,I don't know,I am not sure,I don't know,No,I don't know,I don't know,Maybe,Maybe,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,may not get hired,No,may not get hired,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,21.0,male,UK,UK,Front-end Developer,Never,1
0,26-100,1.0,Yes,I am not sure,No,No,No,Somewhat easy,Maybe,No,No,Yes,Yes,No,1,Some did,N/A (not currently aware),None did,Some did,No,Some of them,None of them,Some of my previous employers,"Yes, at all of my previous employers",Some did,None of them,Yes,I'm deaf. It'll be obvious soon enough. ,No,I'm already deaf. I have a lot working against me in the interview process already. ,"Yes, I think it would","Yes, I think they would",Very open,No,I don't know,Yes,Yes,Yes,1,Rarely,Often,34.0,female,USA,USA,Supervisor/Team Lead,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,No,Because it's none of their business. ,No,Because it's none of their business. ,"Yes, I think it would","Yes, I think they would",Very open,No,I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,40.0,male,Germany,Germany,Back-end Developer,Always,1
0,26-100,1.0,Yes,No,No,No,I don't know,Very difficult,Yes,Maybe,Maybe,Maybe,No,Yes,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"Depends greatly on the job involved. I can adapt quickly to jobs involving heavy lifting, for example, but would not admit that it would probably wind me to start with. Most physical health issues severe enough to discuss are visible, and if they are not (say I have cancer and am going to be going on chemo) I would not discuss because of huge possibility of not being hired due to potential for medical leave / lots of absence. ",No,"Mental health issues are hugely stigmatized. I made the mistake of letting my last employer find out that I had ADHD and an adderall prescription not really thinking about it. The head of engineering would joke about me ""doing meth"" after that at horrible moments including me (I have no degree) interviewing a PhD candidate who had done groundbreaking work in SMP and threaded rendering at SGI in the 90s and was all around awesome. Luckily he made a joke about not talking about the shrooms he did to lighten that one, but there were many worse situations. I was considered one of the most valued employees because of my ability to get anything done with the LLVM compiler system. One day I pointed out to the manager in question that he was on a higher dosage of the same medication I was on, and the stupid meth jokes got worse from there. It's not really a light accusation to make on somebody given our country's state of drug law, something which I am something of an activist for reform of. It was was degrading. I was also made fun of for being autistic despite that not being a disorder I have. ","Yes, it has","No, I don't think they would",Somewhat open,"Yes, I experienced",No,Yes,Yes,Yes,1,Rarely,Often,35.0,male,USA,USA,Other|Back-end Developer|Front-end Developer|Designer,Sometimes,1
0,6-25,1.0,Yes,Yes,No,I don't know,No,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,"Any health issue is potentially a liability, so I would hesitate to mention it unless it had direct bearing on the job responsibilities.",No,"As above, but with added stigma that mental health issues are seen as not serious (and therefore bringing it up is itself would be considered a problem), or as incurable and therefore at least as big a liability as a physical problem.","Yes, I think it would",Maybe,Very open,Maybe/Not sure,No,No,No,No,1,Never,Often,44.0,male,USA,USA,Executive Leadership|DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,None did,None did,Sometimes,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,Maybe,I'm already very private about personal issues,Maybe,Stigma,"No, I don't think it would",Maybe,Very open,"Yes, I experienced",Yes,Yes,No,Yes,0,Sometimes,Sometimes,35.0,female,Canada,Canada,Front-end Developer,Sometimes,1
0,>1000,1.0,No,No,No,No,I don't know,Very difficult,Yes,Maybe,No,No,No,Yes,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,45.0,male,USA,USA,Other,Sometimes,0
0,>1000,0.0,Yes,Yes,I don't know,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,Yes,Stigma,"No, I don't think it would","No, I don't think they would",Very open,No,No,Yes,Yes,Yes,1,Never,Sometimes,42.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,It depends on the reputation of the employer,Maybe,It depends on the reputation of the employer,"Yes, it has",Maybe,Somewhat open,"Yes, I experienced",I don't know,Yes,Yes,Yes,0,Rarely,Sometimes,40.0,male,USA,USA,One-person shop|Back-end Developer|DevOps/SysAdmin,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Not anyone's business but mine,No,Would not get hired,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,Yes,No,Yes,1,Sometimes,Often,50.0,female,USA,USA,One-person shop,Always,0
0,100-500,1.0,Yes,No,I don't know,I don't know,I don't know,I don't know,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,I was aware of some,Some did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,I would bring it up if it was obvious or relevant.,Maybe,I would be reluctant to bring up a mental health issue for fear that it could reduce my chances of getting the job.,Maybe,Maybe,Somewhat open,No,Yes,Maybe,Maybe,No,1,Not applicable to me,Sometimes,36.0,male,USA,USA,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,"Yes, always",Some of them,None of them,"Yes, at all of my previous employers",Some of my previous employers,Some did,Some of them,Maybe,"If I needed accommodations as part of my work, or if it were very obvious and referring to it might diffuse tension, I would bring it up. Otherwise, I would not.",No,"There is absolutely no way it could help, and a lot lot lot of ways it could hurt. And even though I should be protected by non-discrimination laws, if someone did use it in their decision-making, I'd have virtually no recourse.",Maybe,Maybe,Very open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,female,USA,USA,Other|Supervisor/Team Lead|Back-end Developer|One-person shop,Always,1
0,26-100,1.0,I don't know,No,Yes,No,I don't know,Very easy,No,No,Yes,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,"Yes, they all did",Some did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","No, I don't think they would",Somewhat open,No,I don't know,Maybe,No,No,0,Not applicable to me,Not applicable to me,29.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,Yes,No,No,I don't know,I don't know,Somewhat easy,Maybe,Maybe,Yes,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","No, I don't think they would",Not open at all,No,No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,USA,USA,Other,Never,0
0,26-100,1.0,No,I am not sure,No,I don't know,Yes,Very difficult,Yes,Maybe,Maybe,Maybe,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, it has","No, I don't think they would",Neutral,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Sometimes,Often,31.0,male,USA,USA,Dev Evangelist/Advocate|Support,Sometimes,1
0,>1000,0.0,I don't know,No,No,No,I don't know,Somewhat difficult,Yes,Maybe,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,None did,None of them,No,Not their business,No,Not their business,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,42.0,male,Canada,Canada,Supervisor/Team Lead|Front-end Developer|Back-end Developer|DevOps/SysAdmin,Always,1
0,500-1000,1.0,Yes,Yes,No,I don't know,Yes,Somewhat easy,Maybe,Maybe,No,No,No,No,1,Some did,"No, I only became aware later",Some did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,No,Risk of losing consideration for a position ,No,Could contribute to employment decision (legal or not) ,"Yes, I think it would",Maybe,Neutral,No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,25.0,male,USA,USA,Support,Sometimes,0
0,6-25,1.0,Yes,Yes,No,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Yes,My physical health issues are obvious from my appearance.,No,It would be judged as a risk.,"Yes, I think it would",Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,27.0,male,USA,USA,Executive Leadership,Sometimes,0
0,>1000,0.0,Yes,Yes,No,I don't know,I don't know,Somewhat difficult,Maybe,Maybe,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,They might think I'm a hypochondriac,No,They might think I'm a complainer,"Yes, I think it would","Yes, I think they would",Very open,Maybe/Not sure,No,Yes,Yes,Yes,1,Sometimes,Often,41.0,female,USA,USA,Back-end Developer,Never,1
0,100-500,1.0,Yes,Yes,No,Yes,I don't know,Somewhat easy,Maybe,No,Maybe,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,No,None of their business as long as I feel I can perform my work ,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,No,Yes,Yes,No,0,Rarely,Often,41.0,female,USA,USA,Executive Leadership,Sometimes,0
0,>1000,0.0,Yes,Yes,Yes,Yes,Yes,Very easy,Yes,Maybe,No,No,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,They may not hire me thinking I might take time off from work. ,No,Supervisors don't like to deal with those sort of issues.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,1,Not applicable to me,Not applicable to me,55.0,female,USA,USA,HR,Never,0
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,Maybe,No,Maybe,Maybe,No,No,1,"No, none did",I was aware of some,I don't know,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,Generally not applicable to my job,Maybe,"Potentially frowned upon
","Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,No,Yes,Yes,No,0,Not applicable to me,Not applicable to me,21.0,male,USA,USA,Dev Evangelist/Advocate,Never,1
0,>1000,0.0,I don't know,I am not sure,Yes,No,I don't know,Very easy,Maybe,Maybe,No,Maybe,Yes,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,Netherlands,Netherlands,Supervisor/Team Lead,Never,0
0,>1000,0.0,I don't know,No,No,I don't know,Yes,Very easy,Maybe,Maybe,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Only if it would affect my future work.,Maybe,Only if it is relevant for the work.,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,female,Netherlands,Netherlands,Front-end Developer,Sometimes,1
0,>1000,0.0,Yes,Yes,No,Yes,I don't know,I don't know,Maybe,No,No,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat not open,No,I don't know,No,Maybe,No,0,Not applicable to me,Sometimes,40.0,male,UK,UK,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"If it impacts the work, they should know about it.",Yes,"If it impacts the work, they should know about it.",Maybe,"No, I don't think they would",Somewhat open,No,I don't know,Maybe,Maybe,No,0,Sometimes,Often,25.0,male,Netherlands,Netherlands,Support|Back-end Developer|One-person shop,Always,1
0,>1000,0.0,Yes,I am not sure,Yes,I don't know,I don't know,Somewhat easy,Maybe,No,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,Maybe,No,0,Not applicable to me,Sometimes,36.0,male,Germany,Germany,Other,Sometimes,0
0,26-100,1.0,No,I am not sure,No,No,No,Somewhat easy,Maybe,Maybe,Yes,Maybe,No,No,1,Some did,I was aware of some,None did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"I don't know, I've never had a physical health issue that would need bringing up, so I don't know how I'd react in that situation",No,"I'm not sure if it'd harm my chances, but I wouldn't want to give anyone more reason to not hire me","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,Maybe,No,0,Sometimes,Sometimes,25.0,male,Germany,Germany,Front-end Developer,Never,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,"Yes, at all of my previous employers",I don't know,None of them,Maybe,If it was a long term issue that would require special accommodations on their part.,Maybe,Would be concerned at the negative stigma,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,Front-end Developer|Back-end Developer,Always,1
0,6-25,1.0,No,I am not sure,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"Could impact their willingness to hire, even subconsciously.",No,Stigma.,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,I don't know,Maybe,No,No,1,Not applicable to me,Not applicable to me,37.0,male,USA,USA,Back-end Developer,Always,1
0,>1000,0.0,Yes,No,No,Yes,I don't know,Neither easy nor difficult,Maybe,Maybe,No,Maybe,No,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,No,Would risk not getting the job.,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,I don't know,Maybe,Maybe,No,0,Not applicable to me,Sometimes,45.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,No,Neither easy nor difficult,Maybe,Maybe,Yes,Yes,No,No,1,"No, none did",I was aware of some,None did,None did,Sometimes,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,No,Fear of discrimination,No,Stigma,"Yes, it has",Maybe,Not open at all,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,26.0,male,USA,USA,Front-end Developer,Never,1
0,26-100,1.0,Yes,I am not sure,No,I don't know,Yes,Somewhat easy,Maybe,Maybe,Maybe,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,I wouldn't want it to affect my ability to get the position,No,I feel it would negatively effect my ability to get the position,"Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,23.0,male,USA,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,No,No,Yes,Somewhat difficult,Maybe,No,No,No,No,No,1,Some did,"No, I only became aware later",None did,None did,Sometimes,Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,22.0,female,USA,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,No,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,I would be afraid it would negatively impact my chances.,No,I would be afraid it would negatively impact my chances.,Maybe,"Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,46.0,female,USA,USA,Back-end Developer,Always,1
0,6-25,1.0,No,No,Yes,No,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,None did,Some of them,Yes,I would want to make sure expectations were set clearly at the start,Yes,I would want to set expectations of my ability from the start,Maybe,Maybe,Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,UK,UK,Other,Sometimes,0
0,100-500,1.0,Yes,I am not sure,I don't know,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Yes,Fear of discrimination,Maybe,Stigma,"No, it has not","No, they do not",Very open,No,Yes,Maybe,Yes,Yes,1,Sometimes,Often,27.0,male,USA,USA,Dev Evangelist/Advocate|Back-end Developer|Support,Always,1
0,6-25,1.0,No,No,No,Yes,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",None of them,Some of my previous employers,I don't know,None did,None of them,Maybe,Fear of discrimination,Maybe,It might be important to know how they react to such things.,Maybe,"No, I don't think they would",Very open,No,I don't know,Maybe,No,No,0,Not applicable to me,Not applicable to me,37.0,male,UK,UK,Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,No,No,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Depends if it's relevant,Maybe,depends if it's relevant,"Yes, I think it would","No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,UK,UK,DevOps/SysAdmin,Never,1
0,1-5,1.0,Not eligible for coverage / N/A,No,Yes,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,"Yes, always",Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Maybe,Fear of discrimination,No,Usually not relevant,"Yes, I think it would","No, I don't think they would",Somewhat open,"Yes, I experienced",No,Yes,Maybe,Yes,1,Never,Often,26.0,other,Netherlands,Netherlands,Executive Leadership|DevOps/SysAdmin|Back-end Developer|Support,Sometimes,1
0,500-1000,1.0,No,No,No,No,Yes,Very easy,No,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,I have RSI and don't want them to think I'm not worth investing in.,No,It's none of their business until it affects my work,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,Yes,No,No,No,1,Rarely,Sometimes,23.0,male,Netherlands,Netherlands,Back-end Developer,Never,1
0,26-100,1.0,Yes,Yes,No,No,Yes,Somewhat difficult,Maybe,No,Maybe,Maybe,Yes,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,No,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,I had brain surgery in 1997. Bringing that up is pretty much a no job. On top of that hell they want to look at your DNA first these days. Sad days.,Maybe,That is a slippery slope. In my opinion your chances of getting the job are much less if you bring up mental health issues.,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,40.0,male,USA,USA,DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Never,1
0,1-5,1.0,No,No,No,No,No,Somewhat easy,No,No,Maybe,Yes,No,No,1,I don't know,N/A (not currently aware),None did,None did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,They're usually temporary and you know when it'll be gone,Maybe,"I don't have one, so it's hard to relate",Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,other,other,Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,"Yes, they all did",I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Concern it could overshadow legit issues,Maybe,Concern it could overshadow other issues,"No, I don't think it would","No, they do not",Somewhat open,No,I don't know,Yes,Yes,Yes,1,Sometimes,Often,37.0,male,USA,USA,Dev Evangelist/Advocate|Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,I don't know,Yes,Yes,Somewhat difficult,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"Depending on how strong my position as interviewee is, I might prefer to wait until the offer stage rather than bring it up at interview",No,"I would likely prefer to wait until the offer stage to discuss mental health issue / accommodations, rather than in the interview",Maybe,Maybe,Not applicable to me (I do not have a mental illness),Maybe/Not sure,Yes,Maybe,No,No,1,Not applicable to me,Not applicable to me,34.0,female,USA,USA,Other|HR,Never,0
0,>1000,1.0,Yes,No,No,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,Maybe,I don't really know. It would depend on my impressions at the time.,Maybe,same,"No, I don't think it would",Maybe,Very open,No,No,Yes,Yes,Yes,1,Rarely,Often,40.0,male,USA,USA,Support|Back-end Developer,Sometimes,1
0,500-1000,1.0,Yes,No,No,I don't know,I don't know,Very easy,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,No,Wouldn't want marks against me,"Yes, I think it would","Yes, I think they would",Very open,Maybe/Not sure,No,Yes,Maybe,Yes,1,Never,Sometimes,39.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,500-1000,1.0,Yes,I am not sure,I don't know,Yes,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,Yes,No,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,28.0,male,USA,USA,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,To avoid not being hired,Maybe,It depends on how open the potential employer is about mental health,Maybe,"Yes, I think they would",Somewhat open,Maybe/Not sure,No,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,28.0,male,other,other,Back-end Developer,Sometimes,1
0,26-100,1.0,No,No,No,No,I don't know,Neither easy nor difficult,No,No,No,No,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Somewhat not open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,Germany,Germany,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,No,Maybe,Maybe,No,1,Not applicable to me,Not applicable to me,48.0,male,UK,UK,Other,Sometimes,0
0,>1000,1.0,Yes,Yes,No,No,I don't know,Somewhat difficult,Maybe,Maybe,Yes,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,If it would make me seem less suitable for a job,Maybe,If it would make me seem less suitable for the job,Maybe,Maybe,Somewhat open,"Yes, I observed",No,Yes,Yes,Yes,1,Sometimes,Often,49.0,female,USA,USA,DevOps/SysAdmin|Support,Sometimes,1
0,26-100,1.0,No,I am not sure,No,No,I don't know,Somewhat easy,Maybe,No,Yes,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,I'd want to be honest and up-front with a potential employer.,No,I'd worry that the reaction would not be one of understanding and that it would count against me during the selection process.,"Yes, I think it would",Maybe,Very open,No,I don't know,Yes,Yes,Yes,1,Sometimes,Often,35.0,male,UK,UK,Back-end Developer,Never,1
0,100-500,1.0,I don't know,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,No,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,No,Stigma,Maybe,"No, they do not",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,35.0,male,other,other,Supervisor/Team Lead|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"I would feel OK discussing physical health, mainly because it can be diagnosed and corroborated by a doctor.",Maybe,"It hard. There is still a stigma around mental health problems and people faking it, certainly around my home town.",Maybe,"No, I don't think they would",Not open at all,No,Yes,Yes,Yes,Yes,1,Often,Often,38.0,male,UK,UK,Dev Evangelist/Advocate,Always,1
0,500-1000,1.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,Maybe,No,Yes,Maybe,Yes,No,1,"Yes, they all did",I was aware of some,None did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Yes,Fear of discrimination,No,Stigma,Maybe,Maybe,Neutral,Maybe/Not sure,Yes,Yes,No,Yes,1,Rarely,Often,32.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead,Sometimes,0
0,>1000,1.0,Yes,Yes,No,Yes,I don't know,Somewhat difficult,Yes,Maybe,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,It depends on the nature of the issue and how it may impact my ability to work.,No,I would not because I am very concerned that it would negatively affect my chances for employment.,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,42.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,Yes,Yes,Somewhat difficult,Maybe,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,"Yes, all of them",Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,"I wouldn't bring it up unless absolutely necessary for my day-to-day job function, out of fear of discrimination or not being hired.",No,"I wouldn't bring it up unless absolutely necessary for my day-to-day job function, out of fear of discrimination or not being hired.","Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Maybe,No,1,Sometimes,Often,33.0,female,USA,USA,Support,Always,0
0,26-100,1.0,I don't know,No,No,I don't know,Yes,Very easy,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),Some did,None did,I don't know,None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers",I don't know,None of them,Yes,"It's best to be up front about stuff if possible - if the employer is aware, then it is easier to judge their attitude towards it (positive or negative) before accepting a position.",Yes,Same as physical health reason really. Coupled with the fact that nowadays I feel it's even more important to highlight mental health issues rather than sweeping under the carpet.,"No, I don't think it would","No, I don't think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,UK,UK,Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Always,1
0,500-1000,1.0,I don't know,No,No,I don't know,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,24.0,male,other,other,Front-end Developer|Back-end Developer,Sometimes,1
0,500-1000,1.0,Yes,Yes,No,Yes,I don't know,Somewhat easy,No,No,Yes,Yes,No,Yes,1,"Yes, they all did","Yes, I was aware of all of them",None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Wouldn't want to risk not getting the job - i'd wait until I was hired,Yes,Because I am open about being a mental health advocate - it's one of the reasons I am good at my job.,Maybe,"No, they do not",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,29.0,female,USA,USA,Other,Sometimes,0
0,100-500,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,No,Stigma.,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Yes,Maybe,No,1,Sometimes,Sometimes,29.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Always,1
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,No,Somewhat easy,No,No,Maybe,Maybe,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,if it wasn't relevant,Maybe,if it wasn't relevant,"No, I don't think it would","No, I don't think they would",Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,24.0,male,UK,UK,Supervisor/Team Lead,Sometimes,0
0,500-1000,1.0,I don't know,No,Yes,I don't know,I don't know,Somewhat easy,Maybe,No,Yes,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Very open,No,Yes,Maybe,No,No,1,Sometimes,Often,30.0,male,other,other,Designer|Front-end Developer|Back-end Developer,Always,1
0,26-100,1.0,I don't know,No,No,No,I don't know,Somewhat difficult,Maybe,No,No,No,I don't know,No,1,Some did,I was aware of some,Some did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Wouldn't want that to be counted against me when compared to other candidates.,No,"Again, wouldn't want it to be held against me compared to other candidates.","No, I don't think it would","No, I don't think they would",Very open,No,No,Yes,Yes,Yes,1,Sometimes,Often,30.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Always,1
0,6-25,1.0,No,No,No,No,I don't know,Somewhat difficult,Yes,No,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,"Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,44.0,male,USA,USA,Support,Always,0
0,100-500,1.0,Yes,I am not sure,No,Yes,I don't know,Somewhat easy,No,No,Maybe,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,"It might not particularly be seen as a ""good"" thing to bring it up.",Maybe,Same reason as above,Maybe,"No, I don't think they would",Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,UK,UK,Dev Evangelist/Advocate,Always,1
0,500-1000,1.0,No,No,No,No,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,None did,None did,"Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,Germany,Germany,Other,Sometimes,0
0,100-500,1.0,Yes,Yes,I don't know,I don't know,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"It would depend on the issue, and whether or not I think it would impact the work I do",Maybe,Depends on whether or not I feel it would impact my ability to do the work on a regular basis.,"No, I don't think it would","No, I don't think they would",Neutral,No,Yes,Yes,No,Yes,1,Rarely,Sometimes,42.0,male,USA,USA,Supervisor/Team Lead,Always,0
0,1-5,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Yes,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,"Yes, all of them",None of them,Some of my previous employers,Some of my previous employers,Some did,"Yes, all of them",Maybe,Depends whether it would affect my ability to carry out the job.,No,Stigma.,"Yes, it has","No, they do not",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Sometimes,30.0,female,UK,UK,Supervisor/Team Lead|Back-end Developer|Front-end Developer|Designer,Sometimes,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,Maybe,Maybe,No,Maybe,No,No,1,"No, none did",N/A (not currently aware),None did,None did,Sometimes,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","No, I don't think they would",Somewhat not open,No,No,Maybe,Maybe,No,1,Often,Often,36.0,male,other,other,Support,Sometimes,0
0,500-1000,1.0,I don't know,No,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,No,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Yes,"If it may affect my productivity, my employer should know about it",Maybe,"Same reason, it may affect my productivity.","Yes, it has","No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,other,other,Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,No,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,No,No,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,USA,USA,Back-end Developer,Always,1
0,500-1000,1.0,I don't know,No,I don't know,I don't know,I don't know,I don't know,Maybe,Maybe,Maybe,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,25.0,male,USA,USA,Other,Sometimes,0
0,26-100,1.0,No,No,No,No,I don't know,Somewhat easy,No,No,Maybe,Maybe,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"Yes, Is important if can affect work.",Maybe,"Yes, If can affect work",Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,25.0,male,other,other,Back-end Developer,Sometimes,1
0,500-1000,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,No,No,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Because it might be important for the employer in case it affects my productivity.,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,24.0,male,other,other,Other|Back-end Developer|Front-end Developer,Never,1
0,>1000,1.0,No,No,No,No,No,Somewhat easy,Yes,No,No,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,cos i don't have any physical health problems,No,cos I have a lot of crap in my head and i am ashamed about it,"Yes, it has","No, I don't think they would",Somewhat open,No,No,Yes,Yes,No,1,Rarely,Sometimes,25.0,male,other,other,Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,No,No,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always",None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Yes,Fear of discrimination,Yes,I like to be open about it up front ,"No, it has not","No, they do not",Very open,No,I don't know,Yes,Yes,Yes,0,Never,Never,31.0,male,other,other,Executive Leadership|Supervisor/Team Lead,Never,0
0,26-100,1.0,Yes,No,No,No,I don't know,I don't know,Maybe,No,Maybe,No,Yes,No,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did",Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,Canada,Canada,Back-end Developer,Sometimes,1
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Somewhat easy,No,No,Maybe,Yes,No,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Only if it would require immediate accommodation.,Maybe,Only if it required immediate accommodation.,"No, I don't think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,Back-end Developer,Never,1
0,6-25,1.0,Not eligible for coverage / N/A,No,Yes,No,Yes,Somewhat easy,Maybe,Maybe,Yes,Yes,I don't know,No,1,"No, none did",I was aware of some,None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,"Less chances of getting the job, I think",No,"Less chances of getting the job, plus negative references for the future.","Yes, it has","No, I don't think they would",Not open at all,No,Yes,Yes,No,Yes,1,Rarely,Often,26.0,female,other,other,Front-end Developer|Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,No,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did","No, I only became aware later",None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,In the interview I'm still trying to present the best image of myself and that may damage it (rightly or wrongly),No,Mental health is still stigmatised enough and not protected enough it could result in my not getting a job I wanted.,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,UK,UK,Back-end Developer|DevOps/SysAdmin,Always,1
0,500-1000,1.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Unless it's something obvious like I'm disabled,No,Seems too private to share,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,Maybe,No,No,1,Never,Often,29.0,female,USA,USA,Support|Other,Always,0
0,26-100,1.0,I don't know,No,No,No,I don't know,Somewhat easy,Maybe,Maybe,No,No,I don't know,Yes,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,Maybe,I would think they don't care about it,No,I imagine they will dismiss my application,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",Yes,Yes,No,Yes,0,Not applicable to me,Not applicable to me,33.0,male,other,other,Back-end Developer,Sometimes,1
0,26-100,1.0,No,I am not sure,No,No,No,Somewhat easy,Maybe,No,Maybe,No,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,It would depend on how relevant it would be. ,Maybe,I don't know if I would do that. ,Maybe,"No, I don't think they would",Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,other,other,Supervisor/Team Lead,Always,0
0,26-100,1.0,Yes,Yes,No,No,I don't know,Neither easy nor difficult,Maybe,No,Yes,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,Because it's common,Maybe,Not sure. That would depend a lot on the company I would be interviewing with.,"Yes, I think it would","Yes, I think they would",Somewhat open,No,I don't know,Yes,Maybe,No,0,Often,Sometimes,30.0,male,USA,USA,Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,Yes,I don't know,Somewhat difficult,Maybe,Maybe,No,No,I don't know,Yes,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"unless it directly affects my ability to do the job, it is irrelevant",No,same reason as above. it's my problem and my business alone.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,29.0,female,USA,USA,Other,Never,0
0,26-100,1.0,I don't know,No,No,Yes,No,Somewhat difficult,Maybe,Maybe,No,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,That should not be a deciding factor when they choose to hire me or not. Why does my physical issue need to be pointed out if its not going to effect my job. ,No,They absolutely do not need to know this before i start. I feel like this is a huge HR issue and the less they know the better honestly. I am very dyslexic and have a learning disability but it does not effect how i preform at my job,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Never,Often,25.0,female,USA,USA,HR,Sometimes,0
0,>1000,0.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Yes,I prefer to keep nothing hidden,Yes,I prefer to keep nothing hidden,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,No,No,1,Not applicable to me,Not applicable to me,27.0,male,USA,USA,Back-end Developer,Never,1
0,500-1000,1.0,Yes,I am not sure,No,No,Yes,Very easy,No,No,No,No,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Yes,Fear of discrimination,Maybe,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,Germany,Germany,Executive Leadership,Sometimes,0
0,500-1000,1.0,Yes,Yes,I don't know,I don't know,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,"If it was something that affected my work, yes.",Maybe,Stigma.,Maybe,"No, I don't think they would",Very open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,38.0,female,USA,USA,Other,Always,0
0,>1000,1.0,Yes,Yes,Yes,Yes,No,Very difficult,Yes,No,Maybe,No,No,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Cultural bias and potential elimination from consideration.,No,Feel it would prevent hire. Only if asked point blank.,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Never,Sometimes,49.0,male,USA,USA,Other,Sometimes,0
0,26-100,1.0,Yes,Yes,No,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Yes,"Honesty, always the best policy, even if it means I don't get the job.",Yes,"Same as any issue, I'm looking for employers that enjoy me exactly as I am. Not some glossed up version of myself",Maybe,"No, I don't think they would",Very open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Dev Evangelist/Advocate,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Yes,because every one should work in an healthy and safe place ...,Maybe,depending of the place and the mental health issue ...,Maybe,Maybe,Not applicable to me (I do not have a mental illness),Maybe/Not sure,I don't know,No,Maybe,No,0,Not applicable to me,Not applicable to me,34.0,male,other,other,Front-end Developer|Back-end Developer,Sometimes,1
0,100-500,1.0,No,No,No,I don't know,I don't know,Very easy,Maybe,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers","Yes, they all did",Some of them,Maybe,Fear of discrimination,Yes,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,other,other,Front-end Developer|Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,Completely depends upon what the issue would be.,No,Has the potential to look like you are whining.,Maybe,"Yes, I think they would",Somewhat not open,No,Yes,Yes,Maybe,Yes,1,Sometimes,Sometimes,29.0,male,USA,USA,Front-end Developer|Back-end Developer|Sales|DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,No,No,No,No,I don't know,Very easy,Maybe,No,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,It might affect my performance and workplace,Yes,It might affect my performance and relations with the colleagues,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,Germany,Germany,Back-end Developer,Sometimes,1
0,100-500,1.0,Not eligible for coverage / N/A,I am not sure,Yes,No,I don't know,Neither easy nor difficult,Yes,Maybe,No,No,Yes,No,1,"No, none did","No, I only became aware later",I don't know,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,No,I don't know,Maybe,Maybe,No,1,Rarely,Often,34.0,male,Germany,Germany,Front-end Developer,Never,1
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,Somewhat easy,Maybe,No,Yes,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,None did,No,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,If the employer made it clear they expected crunch time I would want to discuss stress related issues. ,Maybe,"No, I don't think they would",Somewhat open,No,No,Yes,No,No,1,Rarely,Often,28.0,male,USA,USA,Front-end Developer|Back-end Developer|Support,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Yes,It affects my work ,No,"I'm already a minority in tech, definitely wouldn't get the job if also sick ","Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,Yes,Yes,No,Yes,1,Rarely,Sometimes,35.0,female,UK,UK,One-person shop|Back-end Developer|Supervisor/Team Lead,Always,1
0,500-1000,1.0,I don't know,I am not sure,No,I don't know,I don't know,Very easy,No,No,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,Germany,Germany,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,I don't know,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat not open,No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,33.0,male,Germany,Germany,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,I'd be concerned that it would negatively affect my employment opportunity.,Maybe,I'd be concerned that it would negatively affect my employment opportunity.,Maybe,Maybe,Neutral,No,I don't know,Maybe,Maybe,Yes,1,Sometimes,Sometimes,37.0,female,USA,USA,Other,Sometimes,0
0,>1000,1.0,Not eligible for coverage / N/A,No,Yes,Yes,Yes,Very easy,Yes,No,Maybe,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,If it looked like you'd take a lot of time off or die soon,No,Because they wouldn't employ you,"Yes, it has","No, I don't think they would",Somewhat open,"Yes, I experienced",No,Yes,Yes,Yes,1,Sometimes,Often,45.0,male,UK,UK,Supervisor/Team Lead|DevOps/SysAdmin,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,Some did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,No,I wouldn't want to knowingly generate bias against me in an interview.,No,I wouldn't want to knowingly generate bias against me in an interview.,"No, it has not",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,female,USA,USA,Front-end Developer|Designer,Always,1
0,>1000,0.0,No,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,Maybe,No,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers",I don't know,I don't know,None of them,No,I want to get hired,No,I want to get hired,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,36.0,male,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,500-1000,1.0,Yes,Yes,No,Yes,I don't know,I don't know,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,"no stigma, high probability of sympathy/understanding",Maybe,uncertainty about their reaction,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Often,Often,30.0,male,USA,USA,Other|Support,Never,0
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,Very difficult,Maybe,Maybe,No,Maybe,No,No,1,Some did,I was aware of some,Some did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,Maybe,I don't require accommodations and I'm afraid of discrimination. ,No,Fear of discrimination.,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,33.0,female,USA,other,Dev Evangelist/Advocate,Sometimes,1
0,500-1000,1.0,Yes,I am not sure,No,Yes,I don't know,I don't know,Maybe,No,No,No,I don't know,Yes,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Yes,Fear of discrimination,No,"Even with more education on mental health, there is still a stigma and negative outcome in the work place if one is known to be 'on medication'.","Yes, it has","Yes, they do",Not open at all,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Never,Sometimes,45.0,female,Canada,Canada,HR,Always,0
0,26-100,1.0,Yes,Yes,Yes,Yes,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,I prefer to keep my health information private as long as it is not actively affecting my job performance at the time of the interview.,No,"I need to establish trust with my employer before I would be willing to discuss my mental health, especially if it was not actively affecting my work performance at the time of the interview.",Maybe,"No, I don't think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,30.0,female,USA,USA,Supervisor/Team Lead,Sometimes,0
0,26-100,1.0,Yes,Yes,Yes,No,Yes,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,No,Yes,1,"Yes, they all did",I was aware of some,None did,None did,Sometimes,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Maybe,seems wrong,No,No one wants to hire a crazy person,"Yes, it has","Yes, they do",Somewhat not open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,30.0,male,USA,USA,Supervisor/Team Lead|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"It might make them less likely to hire me, e.g. because of cost of health insurance.",No,"It might make them doubt my reliability or performance, and so be less likely to hire me.",Maybe,"No, I don't think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,29.0,male,USA,USA,DevOps/SysAdmin|One-person shop|Front-end Developer|Back-end Developer,Always,1
0,1-5,0.0,No,Yes,Yes,No,No,Somewhat easy,No,No,Yes,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,Only got ask,Maybe,Only if got ask,"Yes, I think it would","No, I don't think they would",Very open,No,Yes,No,No,No,0,Never,Sometimes,36.0,male,other,other,DevOps/SysAdmin|Executive Leadership,Sometimes,1
0,26-100,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Maybe,Maybe,Yes,Yes,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,I worry it would affect my chances of employment.,Maybe,I worry it would affect my chances of employment,Maybe,Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Maybe,Yes,1,Rarely,Often,28.0,male,USA,USA,Front-end Developer,Never,1
0,26-100,1.0,Yes,I am not sure,I don't know,I don't know,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,"No, I only became aware later",Some did,None did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,No,"Naturally, I'd be afraid that they wouldn't hire me.",No,"Naturally, I'd be afraid that they wouldn't hire me.",Maybe,Maybe,Somewhat open,No,No,Yes,Yes,Yes,1,Sometimes,Often,36.0,male,USA,USA,Front-end Developer,Sometimes,1
0,500-1000,1.0,Yes,Yes,No,I don't know,I don't know,Neither easy nor difficult,Maybe,No,Maybe,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,Some of them,Yes,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat not open,Maybe/Not sure,Yes,Maybe,Maybe,Yes,1,Sometimes,Often,37.0,female,USA,USA,Executive Leadership,Sometimes,0
0,26-100,1.0,Yes,I am not sure,No,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,I wouldn't feel comfortable discussing my personal health and would not want to appear weak.,No,I would not want to appear weak or unstable.,"No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,Maybe,No,1,Never,Often,29.0,male,USA,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,I don't know,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,"No, I only became aware later",Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,"My interview process involves checking my baggage at the door. If it's someplace I wouldn't feel comfortable bringing that type of thing up after being hired, I don't want to be interviewing there anyway. Trust.",No,"Again, check my baggage at the door. My ADHD and general anxiety are well-managed enough that most of the time, they'll never have to worry about it anyway. At the same time, I'm proactive about bringing it up at my current gig, because I don't want it to be a ""new thing"" if I'm suddenly in a bad way.","No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,25.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,No,Yes,Yes,Yes,Neither easy nor difficult,No,No,Maybe,Yes,No,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,female,USA,USA,Supervisor/Team Lead,Sometimes,0
0,>1000,0.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,Yes,Yes,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,None did,Some of them,Maybe,"despite the fact that the Canadian human rights act forbids discrimination based on mental or physical health, many public sector companies will try to cross the line by asking questions that touch on health as a way to minimize insurance premium costs",No,Same as above,"Yes, I think it would",Maybe,Very open,"Yes, I observed",No,No,No,No,1,Sometimes,Not applicable to me,37.0,male,Canada,Canada,Support,Sometimes,0
0,>1000,1.0,Yes,Yes,No,Yes,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,"I've always been coached that it's not appropriate to discuss anything like that, as it may adversely impact the interview.",No,See above,Maybe,Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Often,40.0,female,USA,USA,Executive Leadership|Dev Evangelist/Advocate,Sometimes,1
0,100-500,1.0,Yes,Yes,Yes,Yes,I don't know,Somewhat difficult,Yes,Maybe,Maybe,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Very open,Maybe/Not sure,No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,32.0,male,USA,USA,DevOps/SysAdmin,Always,1
0,26-100,1.0,I don't know,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,Not risk mot getting the job in case they thought I would be off work more often,No,Stigma,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,38.0,male,UK,UK,Back-end Developer|Dev Evangelist/Advocate,Never,1
0,26-100,1.0,Yes,I am not sure,Yes,I don't know,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,No,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,"If I felt it would decrease the odds of getting the position, I'd probably omit the information.",No,"The stigma of mental illness is something that I am not sure I feel most employers would be willing to look past in an interview. I'm already a woman, which some view as a burden (will she need to leave for childcare? is she as capable of this job as her male counterparts?) and adding the additional 'burden' of having a mental health issue seems like it'd stack the cards against me.",Maybe,"No, I don't think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,female,USA,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,I don't know,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,"No, I only became aware later",None did,Some did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Maybe,Never know how they coudl take it? ,Maybe,Never know what they will do with that information,Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,No,No,No,1,Sometimes,Often,28.0,female,USA,USA,Other,Sometimes,0
0,100-500,1.0,No,No,No,No,I don't know,Very difficult,Yes,Maybe,No,No,No,Yes,1,Some did,I was aware of some,None did,Some did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Yes,"I think they would see it as temporary, maybe even view you as hardy/resilient",No,Because the employer would use it to measure how competent/high maintenance I was,"Yes, it has","No, I don't think they would",Somewhat not open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Often,Often,27.0,female,UK,UK,Other,Sometimes,0
0,26-100,1.0,Yes,Yes,No,Yes,Yes,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat not open,"Yes, I observed",No,Yes,Yes,Yes,1,Sometimes,Often,28.0,female,USA,USA,Front-end Developer,Sometimes,1
0,6-25,1.0,I don't know,Yes,No,No,I don't know,Somewhat easy,No,No,No,Maybe,Yes,Yes,1,Some did,"Yes, I was aware of all of them",None did,None did,"Yes, always",Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,No,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat not open,No,Yes,Yes,Yes,Yes,1,Never,Often,26.0,male,Germany,Germany,Front-end Developer|Back-end Developer,Always,1
0,26-100,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,Yes,Stigma,Maybe,"No, I don't think they would",Very open,No,Yes,Yes,No,No,1,Rarely,Often,40.0,male,USA,USA,Support|HR|Supervisor/Team Lead|Executive Leadership,Sometimes,0
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Really depends on the vibe that I got from the interview.,Maybe,I'd have to feel it out in the interview and see if I felt comfortable discussing it. It's a tough call. I wish I could just feel comfortable doing it all the time. ,Maybe,"No, I don't think they would",Somewhat open,"Yes, I experienced",No,Yes,Yes,Yes,1,Sometimes,Often,42.0,male,USA,USA,Dev Evangelist/Advocate,Sometimes,1
0,26-100,1.0,Yes,I am not sure,I don't know,Yes,I don't know,Very easy,No,No,Maybe,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,"Even though not legal, it could be a factor in hiring. Also, none of their business.",No,See previous.,Maybe,"No, I don't think they would",Neutral,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,36.0,male,USA,USA,Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Maybe,depends if it would affect my work,No,suspect it would stop me getting job,"Yes, I think it would","Yes, I think they would",Very open,Maybe/Not sure,Yes,Maybe,Maybe,No,0,Sometimes,Sometimes,44.0,male,UK,UK,Front-end Developer|Back-end Developer|Support,Never,1
0,500-1000,1.0,Yes,Yes,No,No,I don't know,Very difficult,Maybe,Maybe,Maybe,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Physical health issues are more socially/culturally acceptable and would not reflect as poorly on the interviewee as a mental health issue.,No,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Maybe,Yes,Yes,1,Sometimes,Often,24.0,male,USA,USA,Back-end Developer,Never,1
0,100-500,0.0,I don't know,I am not sure,No,Yes,I don't know,Very difficult,Yes,Yes,No,Maybe,No,Yes,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did","Yes, always",I don't know,None of them,"No, at none of my previous employers","Yes, at all of my previous employers",None did,None of them,Yes,Physical issues are relatively well understood by anyone I've ever mentioned them to.,Maybe,I feel as if there is a stigma against mental health issues in general. I am loathe to even discuss it with my wife.,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,I don't know,Maybe,Maybe,No,1,Not applicable to me,Sometimes,44.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer|Designer,Never,1
0,>1000,1.0,Yes,I am not sure,I don't know,I don't know,I don't know,Neither easy nor difficult,No,No,Yes,No,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,No,No,No,Yes,Yes,1,Never,Sometimes,31.0,male,USA,USA,Dev Evangelist/Advocate,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Yes,Depends on whether it would put me in the position of needing to ask for accommodations.,No,I wouldn't know if I needed accommodations. Also shame. Probably more shame.,"Yes, it has","Yes, they do",Very open,"Yes, I experienced",Yes,Yes,Maybe,No,1,Sometimes,Often,49.0,male,USA,USA,One-person shop|Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,No,Yes,I don't know,Yes,Very difficult,Maybe,Maybe,Maybe,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,I'd only bring it up in an interview if the issue required accommodation.,Maybe,I'd only bring it up if I felt comfortable & also would need accommodations. But probably a lot less likely to bring it up than a physical health issue.,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,female,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,1.0,Yes,I am not sure,I don't know,Yes,I don't know,Somewhat easy,No,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,None did,None did,No,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,No,"My problem to work with, not theirs","Yes, I think it would",Maybe,Not open at all,"Yes, I observed",Yes,Maybe,No,No,1,Not applicable to me,Sometimes,27.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer|DevOps/SysAdmin,Always,1
0,100-500,1.0,Yes,Yes,No,No,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,No,"Personal health issues don't belong in the interview process, as it inherently makes the interview particularly hostile to the interviewee and their organization (because HR law, especially as relating to anti-discrimination, is a thing).",No,"Personal health issues don't belong in the interview process, as it inherently makes the interview particularly hostile to the interviewee and their organization (because HR law, especially as relating to anti-discrimination, is a thing).","No, I don't think it would","No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,Yes,No,Yes,1,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,Yes,No,No,I don't know,Very difficult,Yes,Maybe,No,No,No,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",None of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,No,I wouldn't want to bring up anything that may trigger unconscious bias and therefore hinder my chances of receiving a job,No,Mental health issues are still a taboo subject.,"Yes, it has","Yes, I think they would",Somewhat open,No,Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,20.0,female,USA,USA,Back-end Developer|Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,41.0,male,Germany,Germany,Back-end Developer|Front-end Developer|One-person shop,Always,1
0,100-500,0.0,No,No,No,Yes,I don't know,Neither easy nor difficult,Yes,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,Not relevant,No,Fear of discrimination ,Maybe,Maybe,Somewhat not open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Sometimes,Not applicable to me,38.0,male,Australia,Australia,Back-end Developer,Sometimes,1
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Yes,Maybe,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,No,"It's my problem, not theirs.",No,"It's my problem, not theirs.",Maybe,"Yes, I think they would",Somewhat not open,Maybe/Not sure,Yes,Yes,Yes,No,0,Sometimes,Sometimes,29.0,male,USA,USA,Other,Never,0
0,100-500,1.0,Yes,No,No,No,I don't know,Very easy,Maybe,No,Maybe,Maybe,No,Yes,1,"Yes, they all did","Yes, I was aware of all of them",None did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,"there's no stigma to saying you have an rsi, a heart condition, etc.",No,because it gets equated with mental competency and makes you look bad,"Yes, it has",Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,44.0,female,USA,USA,Supervisor/Team Lead,Always,0
0,500-1000,1.0,I don't know,I am not sure,No,Yes,I don't know,Neither easy nor difficult,No,No,No,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,"Yes, they all did",I don't know,None of them,None of them,"No, at none of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,"If it was something actually relevant to the job I was interviewing for, of course I would bring it up.",Yes,"If I thought that it was relevant to the job I was interviewing for, I would bring it up.",Maybe,Maybe,Somewhat open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,No,Somewhat difficult,Yes,Maybe,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Fear of discrimination,No,Fear of discrimination,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,54.0,male,USA,USA,Back-end Developer,Sometimes,1
0,500-1000,1.0,I don't know,No,No,No,I don't know,Somewhat easy,No,No,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Neutral,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,Germany,Germany,Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,No,I don't know,Maybe,Maybe,No,No,No,Yes,1,I don't know,N/A (not currently aware),"Yes, they all did",None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Maybe,depends if I feel comfortable enough,Maybe,depends if I feel comfortable enough,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,Netherlands,Netherlands,Back-end Developer,Never,1
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,It wouldn't affect day-to-day activities,No,Stigma,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Rarely,Sometimes,26.0,other,UK,UK,DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,No,Yes,I don't know,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Only if it would affect performance.,No,Stigma,Maybe,Maybe,Somewhat open,No,Yes,Maybe,Maybe,No,0,Rarely,Sometimes,26.0,male,UK,UK,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Not of their business,No,It's not of their business,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I observed",I don't know,Maybe,Yes,No,1,Not applicable to me,Not applicable to me,34.0,male,UK,UK,One-person shop,Sometimes,0
0,100-500,1.0,I don't know,No,No,No,I don't know,I don't know,Yes,Yes,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,That is none of their business and it would affect their decision regardless of policy,No,It would affect their decision regardless of policy ,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Maybe,Yes,1,Never,Never,38.0,female,USA,USA,Back-end Developer,Sometimes,1
0,100-500,1.0,No,No,No,No,I don't know,Very easy,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,30.0,male,UK,UK,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",None of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,If it does not affect my job then it is not their concern,No,I believe there would be a conscious/unconscious bias against me.,"Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,34.0,male,UK,UK,Front-end Developer|Back-end Developer|Supervisor/Team Lead,Sometimes,1
0,>1000,1.0,Yes,I am not sure,No,No,Yes,Very easy,No,No,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,Some did,"Yes, they all did","Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Dependent upon impact on work duties.,Maybe,I often do not disclose.,Maybe,Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Sometimes,47.0,female,Australia,Australia,Support,Sometimes,0
0,100-500,0.0,Yes,I am not sure,Yes,Yes,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did",I was aware of some,None did,None did,No,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",Yes,physical health is not always a reason to not being able to work,Yes,There is mental health issues in my family,Maybe,"No, I don't think they would",Very open,"Yes, I experienced",Yes,Maybe,No,Yes,1,Not applicable to me,Not applicable to me,33.0,female,other,other,Back-end Developer,Sometimes,1
0,>1000,0.0,I don't know,No,No,No,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,No,Wouldn't feel comfortable telling them.,No,Would feel it may have an effect on the chance of employment,Maybe,Maybe,Neutral,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,22.0,male,UK,UK,Front-end Developer,Sometimes,1
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,No,Somewhat difficult,No,No,No,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,they might think i'd be a high-maintenance or expensive hire,Maybe,"it would depend on the severity of the condition, and to what extent it would affect my capability to work",Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,I don't know,Yes,Maybe,No,1,Not applicable to me,Not applicable to me,28.0,male,UK,UK,Front-end Developer,Never,1
0,500-1000,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,I don't know,None did,Some of them,Maybe,"It may affect the hiring managers decision if I bring this up. Although, an interview is about ensuring the employer is a good fit for me too. So I would have to consider my options at the time.",Maybe,"It may affect the hiring managers decision if I bring this up. Although, an interview is about ensuring the employer is a good fit for me too. So I would have to consider my options at the time.","Yes, I think it would",Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,male,UK,UK,Support,Always,0
0,>1000,0.0,Not eligible for coverage / N/A,No,No,No,I don't know,Somewhat easy,Maybe,No,Yes,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,"Yes, all of them",Maybe,Fear of discrimination,Maybe,Stigma,"No, I don't think it would","No, they do not",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,24.0,male,UK,UK,Back-end Developer|Front-end Developer,Sometimes,1
0,1-5,0.0,No,I am not sure,No,No,I don't know,Very difficult,Maybe,Maybe,Maybe,Maybe,No,Yes,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Because I'd die if I had to physically work beyond my capacity.,Maybe,Mental health is not seen as an issue by most employers.,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",No,Maybe,No,Yes,0,Sometimes,Sometimes,55.5,male,Australia,Australia,DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,It depends on how permanent the issue is likely to be.,No,Mental health is either not taken as seriously as physical health or is viewed negatively.,"Yes, I think it would","No, I don't think they would",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Often,Often,55.5,female,Australia,Australia,Back-end Developer,Always,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,Yes,I don't know,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"It wouldn't affect my ability to perform the work, so would be unlikely to affect the outcome of an interview",Maybe,"It _may_ affect the outcome of an interview, so I'd be reluctant to bring it up",Maybe,Maybe,Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,39.0,male,other,USA,Back-end Developer,Always,1
0,1-5,1.0,No,No,I don't know,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,Yes,No,1,Some did,N/A (not currently aware),None did,None did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,It could affect my application.,Maybe,I need to know they understand. I don't want to work for someone who doesn't understand.,"Yes, I think it would","No, I don't think they would",Somewhat not open,No,Yes,Yes,No,Yes,1,Sometimes,Often,21.0,male,UK,UK,DevOps/SysAdmin|Front-end Developer|Back-end Developer|Support,Never,1
0,500-1000,1.0,I don't know,No,No,I don't know,I don't know,Very easy,No,No,Maybe,Maybe,Yes,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,I don't think i need it,No,I don't think I need it.,"Yes, I think it would",Maybe,Very open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,female,other,other,Dev Evangelist/Advocate,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always","Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Unspoken prejudices,No,Would be too much of a negative,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",No,Yes,Yes,Yes,1,Often,Often,55.5,male,Canada,USA,DevOps/SysAdmin|Back-end Developer|One-person shop|Front-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,My physical health directly impacts my productivity and is a factor I consider in any value proposition with an employer.,Maybe,My physical health problems are less stigmatized. ,"Yes, it has",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Often,Often,46.0,male,Australia,Australia,Designer,Always,0
0,6-25,1.0,I don't know,No,No,Yes,I don't know,Neither easy nor difficult,Maybe,No,No,Maybe,Yes,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,"unless it's visible or actively and noticably influencing my behaviour, I think it's none of their business",No,"none of their business unless it actively limits my activities, at which point I probably wouldn't be interviewing anyway","Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,32.0,female,UK,UK,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",Maybe,depends on the role and the company as to their response to that,Maybe,very much depends on what the line of questioning leading to that was and the nature of their line of enquiry,"Yes, it has",Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,35.0,male,UK,UK,One-person shop|DevOps/SysAdmin|Executive Leadership,Sometimes,1
0,100-500,1.0,Yes,I am not sure,Yes,No,I don't know,Very easy,No,No,Maybe,Maybe,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did",Some did,Sometimes,"Yes, all of them",Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,UK,UK,Supervisor/Team Lead,Sometimes,0
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,Yes,No,1,"Yes, they all did",N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,"If the health issue could reasonably impact my ability to perform my duties, providing that information would be relevant. However, if I was confident the impact would be minimal, there would be no reason to offer unnecessary information. ",No,There is still too much stigma attached to mental health and the possibility for discrimination is too high. I might disclose it *after* being hired and passing any probationary period. ,Maybe,"No, I don't think they would",Not open at all,No,Yes,Yes,Yes,Yes,1,Never,Rarely,35.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Always,1
0,26-100,1.0,No,I am not sure,Yes,No,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,other,other,Executive Leadership,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,Yes,I have physical health issues which I am not able to hide and which I require accommodation for in many situations or cannot function. I discuss it when that is absolutely necessary.,No,I have enough counting against me in an interview without adding to the number of biases weighted against me.,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,35.0,female,USA,USA,Back-end Developer,Always,1
0,26-100,0.0,I don't know,No,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,"No, I only became aware later",None did,Some did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,Yes,I would discuss it to make sure I was open and up front about myself and who I am/how I work,Maybe,I depends on what degree it affects my work. If it affects how I work I would want to be up front about that.,Maybe,"No, I don't think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,36.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,26-100,1.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,"Could be seen as a weakness, or a reason why you couldn't be as productive.",No,Could definitely be seen as a weakness and a reason why you wouldn't be as productive as someone without the issue.,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,No,Yes,1,Never,Sometimes,50.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,I am not sure,No,No,Yes,Very easy,No,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Seems like it could only hurt you,No,Would only hurt you,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Rarely,31.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,100-500,1.0,Yes,Yes,No,No,I don't know,I don't know,Maybe,Maybe,Yes,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,It's illegal for them to ask in the U.S. and unless it's relevant to job performance there's no reason for me to bring it up.,No,It's not relevant to my ability to perform the job responsibilities.,Maybe,Maybe,Somewhat open,No,Yes,Yes,No,Yes,1,Sometimes,Often,47.0,male,USA,USA,Dev Evangelist/Advocate|Back-end Developer,Never,1
0,6-25,1.0,I don't know,I am not sure,No,I don't know,I don't know,Very difficult,Maybe,Maybe,Maybe,No,I don't know,Yes,1,Some did,I was aware of some,Some did,Some did,"Yes, always","Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,"I have fibromyalgia which still isn't accepted fully in the medical community, so I don't believe it would be handled well by employers (or anybody, really).",No,"Don't have one personally, but the same logic applies. Mental health isn't respected or understood well by anyone and I don't see how it would be to my advantage to disclose.","Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,No,No,No,No,1,Not applicable to me,Not applicable to me,32.0,female,Canada,Canada,Front-end Developer|Back-end Developer|Supervisor/Team Lead,Never,1
0,26-100,1.0,Yes,Yes,No,No,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,"If it was going to effect my position, I would bring it up.",Maybe,"If it was going to effect my position, I would bring it up.",Maybe,"No, I don't think they would",Somewhat open,"Yes, I experienced",Yes,No,Yes,Yes,1,Sometimes,Often,23.0,female,Canada,Canada,Designer,Never,0
0,6-25,1.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,No,Yes,Yes,Yes,No,1,"Yes, they all did",I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,43.0,female,Canada,Canada,Sales,Sometimes,0
0,6-25,1.0,Yes,Yes,No,No,I don't know,Neither easy nor difficult,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,Maybe,"It would depend on the relevance said issue had to the job - for example, I wouldn't feel the need to bring up a knee problem for a desk job interview. If I had a chronic physical health issue that would require me to take breaks or time off, I would be upfront about it. ",Maybe,"Again, it would depend on the relevance. If a mental health issue would in any way effect my life at a the potential job, I would much rather be upfront about my needs and requirements from my employers than try to hide it. If I thought it was irrelevant to the job, I probably wouldn't bring it up during an interview.",Maybe,"No, I don't think they would",Very open,"Yes, I observed",Yes,Maybe,No,No,0,Not applicable to me,Not applicable to me,26.0,female,Canada,Canada,Designer,Sometimes,0
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat not open,Maybe/Not sure,Yes,Maybe,Maybe,No,0,Sometimes,Sometimes,26.0,female,Canada,Canada,Other,Never,0
0,6-25,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,Sometimes,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Maybe,"It would depend on the nature of the job and the physical health issue - if there would be a direct impact on my ability to work because of the issue. If not relevant, I would not disclose.",Maybe,Only if I had a firm belief that there would be no negative consequences.,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,55.0,female,Canada,Canada,Executive Leadership,Sometimes,0
0,6-25,1.0,Yes,No,Yes,No,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,None did,None of them,No,I would be afraid that it would result in me being passed up for the position.,No,I would be afraid that it would result in me not being chosen for the position.,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Yes,Yes,Yes,1,Often,Often,27.0,male,Canada,Canada,Other,Never,0
0,100-500,1.0,Not eligible for coverage / N/A,No,No,I don't know,I don't know,Somewhat difficult,Maybe,No,No,No,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,No,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Yes,"I would bring up a physical health issue because, compared with mental health issues, i feel that there is no prejudices",No,"Like i said before, i think that there are so many prejudices and ignorance about mental health","Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,Yes,No,No,No,1,Not applicable to me,Not applicable to me,34.0,male,other,other,Other,Always,0
0,26-100,1.0,No,No,No,No,I don't know,Somewhat difficult,Yes,Maybe,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"If I have a physical health issue and it has the potential to interfere with my work life, I must be upfront about it.",Maybe,"I am from India. IMO mental illness is not looked upon in an accepting way here. If I have an mental health issue, I would be skeptical to talk about it as it might affect my prospects.","Yes, I think it would","Yes, I think they would",Neutral,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,25.0,male,other,other,Back-end Developer,Never,1
0,26-100,0.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Yes,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,No,i would not want to give the interviewer any reason at all to disqualify me,No,i would not want to give ANY reason for disqualification,"Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,"I guess it really depends on whether it is necessary for the job. If it will not impact day-to-day work, it would not be necessary",Maybe,I am scared it may scare off potential employers to be honest. I guess it really depends on the person that is sitting across the table and how comfortable I'd feel.,Maybe,"No, I don't think they would",Very open,"Yes, I experienced",No,Yes,Yes,Yes,1,Rarely,Sometimes,37.0,male,Netherlands,Netherlands,Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,I am not sure,No,Yes,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Yes,There is no stigma against physical health issue like there is with mental health.,No,The stigma associated with mental health colors the judgement of potential candidates. ,Maybe,Maybe,Somewhat not open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Rarely,Often,38.0,female,USA,USA,Other,Sometimes,0
0,26-100,1.0,Yes,No,No,No,I don't know,Very difficult,Yes,Maybe,Maybe,Maybe,I don't know,No,1,"Yes, they all did","No, I only became aware later",Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,"Being viewed as problematic. Too personal. Maybe allude to it vaguely, at best.",No,For all the reasons you already know.,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,I don't know,Maybe,Maybe,No,1,Not applicable to me,Often,29.0,male,Canada,Canada,Front-end Developer,Never,1
0,500-1000,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,Maybe,No,Yes,Maybe,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,Yes,Maybe,Maybe,No,1,Sometimes,Often,28.0,male,UK,UK,Designer,Always,0
0,6-25,1.0,Not eligible for coverage / N/A,No,Yes,No,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,May not be relevant. ,Maybe,Concern about it's impact on hiring,Maybe,Maybe,Very open,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Sometimes,Often,29.0,male,UK,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Always,1
0,>1000,1.0,Yes,I am not sure,No,No,I don't know,Somewhat easy,No,No,Maybe,Yes,No,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,I would as likely it would effect my work,Yes,"For the same reason. If it effects my work, they need to know.","No, I don't think it would",Maybe,Somewhat not open,"Yes, I observed",Yes,Maybe,Maybe,No,0,Rarely,Often,40.0,male,USA,USA,Dev Evangelist/Advocate,Always,1
0,26-100,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"I think physical health issues are easy to empathize with and understand, so I don't think mentioning it would affect me negatively",Maybe,I don't think mental health issues are well understood and the negative stigma might cause my interview to end negatively,"No, it has not","No, they do not",Somewhat open,No,No,Yes,Yes,Yes,1,Sometimes,Often,25.0,female,USA,USA,Front-end Developer|Supervisor/Team Lead,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,"If it doesn't affect my job, I don't feel that a potential employer has a need to know.",Maybe,"I would say it depends on what it is. Generally speaking, I would be hesitant to bring up any mental health issue in an interview situation, but there are circumstances which could change my mind.","No, I don't think it would",Maybe,Somewhat not open,No,No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,29.0,male,other,other,Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,Yes,Yes,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,Depends on the employer and how specifically it is referenced. Likely would ask about their short-term disability and qualifying events,Maybe,Same as above,Maybe,"No, they do not",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,0,Rarely,Often,29.0,female,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin,Sometimes,1
0,1-5,1.0,Yes,Yes,No,Yes,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,It depends on the relevance for the job and my functioning there-in,Maybe,"Same, depends on the relevance to my function","No, it has not","No, I don't think they would",Very open,No,No,Yes,Yes,Yes,1,Rarely,Sometimes,35.0,male,Netherlands,Netherlands,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Designer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,I try to give the best impression to my interviewers and I wouldn't bring up physical health issues that aren't going to impact my ability to do my job.,No,I try to give the best impression to my interviewers and I wouldn't bring up a mental health issue that doesn't impact my ability to do my job.,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,25.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,No,Yes,No,No,I don't know,Somewhat difficult,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Yes,It could mean time off/etc so the employer needs to be informed.,Yes,It could mean time off/etc and the employer should be infomred,Maybe,Maybe,Somewhat open,"Yes, I observed",No,Yes,Yes,Yes,1,Sometimes,Often,43.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,No,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,"Yes, I experienced",No,Maybe,No,No,0,Not applicable to me,Not applicable to me,26.0,male,other,other,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Never,1
0,100-500,1.0,I don't know,No,No,No,I don't know,Very easy,No,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,No,Seems irrelevant and embarrassing,No,Seems irrelevant and embarrassing,"No, I don't think it would","No, I don't think they would",Somewhat not open,Maybe/Not sure,No,No,Maybe,No,1,Not applicable to me,Sometimes,31.0,male,Germany,Germany,Back-end Developer,Never,1
0,100-500,1.0,Yes,Yes,I don't know,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Yes,I would not want to work for an employer that reacted negatively to a physical health issue. I think it's a good test to ensure that they're the kind of employer I'd want to work for. ,Yes,I would not want to work for an employer that reacted negatively to a mental health issue. I think it's a good test to ensure that they're the kind of employer I'd want to work for. ,Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,31.0,female,USA,USA,Other,Always,0
0,>1000,0.0,I don't know,No,No,No,I don't know,Somewhat difficult,Maybe,No,No,Yes,No,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",I don't know,None did,None of them,Maybe,"I would worry that a potential employer might see a physical illness as a reason I might not be able to work, or to be available for work as much as this profession demands.",No,I think a potential employer would definitely see a mental health issue as a reason not to hire me.,"Yes, it has",Maybe,Somewhat not open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Never,Sometimes,45.0,female,USA,USA,DevOps/SysAdmin|Back-end Developer,Always,1
0,>1000,1.0,No,No,No,No,No,Somewhat easy,Maybe,No,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"i would do it if it makes me unable to perform certain tasks (cannot be exposed to certain liquids, heavy things lifting, etc)",Maybe,employers may see it as a cost,"Yes, I think it would",Maybe,Somewhat open,No,I don't know,No,Maybe,No,0,Not applicable to me,Not applicable to me,23.0,male,other,other,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Never,1
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),Some did,Some did,Sometimes,None of them,None of them,Some of my previous employers,Some of my previous employers,"Yes, they all did",None of them,Maybe,Unsure,Maybe,Unsure,Maybe,"No, I don't think they would",Somewhat open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,39.0,male,USA,USA,Supervisor/Team Lead,Never,0
0,26-100,1.0,Yes,I am not sure,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,"I don't think I'd bring up any type of health issues in an interview unless they are not offering health care, which in that case - I did bring up a few issues of physical health in one interview.",Maybe,It depends on whether or not it would affect my job.,"No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,female,USA,USA,Other,Sometimes,0
0,100-500,1.0,Yes,I am not sure,No,No,I don't know,Very easy,Maybe,No,Yes,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,No,Could compromise my ability to get hired or look like a compelling candidate,Maybe,"No, I don't think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,28.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,500-1000,1.0,I don't know,No,No,I don't know,I don't know,I don't know,Maybe,No,Maybe,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,None did,No,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,No,Many organizations look for any reason to reject a candidate during the interview process.,No,Many organizations look for any reason to reject a candidate during the interview process.,Maybe,"Yes, I think they would",Neutral,No,No,No,Maybe,No,0,Not applicable to me,Often,36.0,male,USA,USA,Dev Evangelist/Advocate|DevOps/SysAdmin,Always,1
0,100-500,1.0,I don't know,No,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"It would depend on the specific issue.
If it impacts my work I would mention it. Otherwise I would not.",No,It should not have an impact on my interview process.,"Yes, I think it would",Maybe,Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,22.0,male,Germany,Germany,Back-end Developer,Never,1
0,1-5,1.0,Yes,I am not sure,No,I don't know,No,Neither easy nor difficult,No,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of being disqualified for the job,No,Too great a stigma. Would likely be rejected for another candidate. ,"Yes, it has",Maybe,Somewhat open,"Yes, I observed",I don't know,Maybe,No,No,1,Sometimes,Sometimes,51.0,male,USA,USA,Support|Back-end Developer|Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,"If the issue affected my work, I would want the employer to know about it at the time of hiring, to avoid conflict later.",Yes,"If the issue affected my work, I would want the employer to know about it at the time of hiring, to avoid conflict later.",Maybe,Maybe,Somewhat open,No,No,Maybe,Maybe,No,0,Not applicable to me,Rarely,39.0,male,other,other,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,Sometimes,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,"If it does not affect my work, it is none of their business.",No,"If it does not affect my work, it is none of their business.",Maybe,Maybe,Not open at all,No,Yes,Yes,Yes,No,1,Not applicable to me,Sometimes,36.0,male,USA,USA,One-person shop|Front-end Developer|Back-end Developer|Supervisor/Team Lead|Executive Leadership,Sometimes,1
0,>1000,0.0,Not eligible for coverage / N/A,I am not sure,No,No,I don't know,Somewhat difficult,No,No,Yes,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,"I feel like bringing up a physical health issue would be a mark against me getting the job. If they had the choice between myself and another candidate that didn't mention a health issue, I feel they would take the other candidate.",No,"I feel like bringing up a mental health issue would be a mark against me getting the job. If they had the choice between myself and another candidate that didn't mention a health issue, I feel they would take the other candidate.",Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,28.0,male,USA,USA,DevOps/SysAdmin|Support,Sometimes,1
0,100-500,1.0,I don't know,No,No,Yes,Yes,I don't know,Yes,Maybe,No,No,I don't know,No,1,"Yes, they all did","No, I only became aware later",None did,Some did,I don't know,I don't know,"Yes, all of them",Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,I would bring it up if it were relevant to my performance.,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,40.0,male,USA,USA,Dev Evangelist/Advocate|Back-end Developer|Designer|Front-end Developer,Always,1
0,26-100,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Maybe,"I have some vision issues that require me to use basic assistive technology (zooming screen, mainly) and depending on what we would be doing in an interview, my needing to see something bigger or closer may come up.",No,I worry that it would be viewed as a very severe weakness.,Maybe,Maybe,Very open,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Sometimes,Often,35.0,female,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,No,I don't know,Somewhat difficult,Yes,No,No,No,No,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,Maybe,"Depends on the nature of the physical health issue, whether it was chronic and the impact on the work. In almost all cases, I would not discuss it because just increases the chance of discrimination.",No,Discrimination.,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,38.0,male,USA,USA,Supervisor/Team Lead,Never,0
0,100-500,1.0,Yes,I am not sure,No,No,I don't know,I don't know,Yes,Maybe,No,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,"Yes, all of them",No,Judgement,No,Judgement,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",Yes,Yes,Maybe,No,1,Sometimes,Often,29.0,male,USA,USA,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,I don't know,None of them,Some of my previous employers,I don't know,I don't know,None of them,Maybe,Will only bring it up if it was relevant,Maybe,Only when it was relevant,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,43.0,male,Netherlands,Netherlands,Designer,Sometimes,0
0,500-1000,1.0,Yes,No,No,I don't know,I don't know,Somewhat easy,Maybe,Maybe,Yes,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,"I have this idea that ""signs of weakness"" will always be a disadvantage in an interview",No,same as above,"Yes, I think it would",Maybe,Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,31.0,female,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,No,No,No,No,I don't know,Somewhat difficult,Yes,No,Maybe,Maybe,No,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,Sometimes,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,"Unless applying for something that required specific physical skills, I don't believe physical health should be a factor in an interview.",No,A perception/assumption of automatic and immediate disqualification. ,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,45.0,male,USA,USA,Other,Sometimes,0
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,No,No,Maybe,Maybe,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,"I barely know these people, probably, and I'd rather not give them any reasons to turn me down. I don't see an upside.",No,"I barely know these people, probably, and I'd rather not give them any reasons to turn me down. I don't see an upside.","No, it has not","No, they do not",Somewhat open,No,Yes,Maybe,Maybe,No,0,Not applicable to me,Sometimes,26.0,male,USA,USA,Other|Dev Evangelist/Advocate|Sales|Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,"Yes, they all did","Yes, always",I don't know,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,Yes,Fear of discrimination,Yes,Stigma,Maybe,"No, I don't think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,42.0,male,USA,USA,DevOps/SysAdmin|Dev Evangelist/Advocate|Supervisor/Team Lead|Executive Leadership,Always,1
0,100-500,1.0,Yes,I am not sure,Yes,Yes,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,No,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Somewhat not open,Maybe/Not sure,No,Yes,No,No,0,Not applicable to me,Not applicable to me,28.0,female,USA,USA,Support,Always,0
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,I don't know,Maybe,No,Yes,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,Some did,None of them,Maybe,circumstantial,Maybe,circumstantial ,Maybe,Maybe,Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,UK,UK,One-person shop,Sometimes,0
0,100-500,1.0,Yes,No,Yes,Yes,I don't know,I don't know,Maybe,Yes,Yes,Maybe,Yes,No,1,"Yes, they all did",I was aware of some,None did,Some did,Sometimes,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Yes,Better to have it out with them now rather than wait. Have spoken in the industry about burnout.,Yes,It's important to know ahead of time.,Maybe,Maybe,Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,39.0,female,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,I am not sure,No,No,Yes,Somewhat easy,Maybe,Maybe,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,It is generally not relevant to employment.,No,"As for physical issues, I do not feel it is relevant to employment.","No, it has not",Maybe,Very open,No,No,Yes,No,Yes,1,Rarely,Rarely,34.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Designer,Sometimes,1
0,26-100,1.0,I don't know,No,No,Yes,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,28.0,female,USA,USA,Support|Back-end Developer,Always,1
0,500-1000,1.0,Yes,Yes,I don't know,I don't know,Yes,Somewhat easy,Maybe,Maybe,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,I don't even talk about health issues to acquaintances -- only to close family and friends,No,Same reason as physical health -- it's very personal.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",No,Maybe,No,No,0,Not applicable to me,Not applicable to me,35.0,female,USA,USA,Supervisor/Team Lead,Sometimes,0
0,6-25,1.0,I don't know,I am not sure,No,No,Yes,Neither easy nor difficult,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Honesty,Yes,Honesty,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,42.0,male,Canada,Canada,HR|Supervisor/Team Lead|Executive Leadership,Sometimes,0
0,6-25,1.0,Yes,No,No,I don't know,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,Some did,"Yes, all of them",Yes,"It would be something they would need to know, so better to know if it's the type of place that does or doesn't understand that.",Maybe,"It depends on the employer. See, it's difficult to answer survey questions that require generalizing all previous employers. I've had productive conversations with some; even so, at one place a mental health issue conversation resulted in immediate retribution.",Maybe,"No, I don't think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,55.5,other,USA,USA,Supervisor/Team Lead,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,"Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Depends what it is. If it's something relevant that affects my physical functioning (e.g. if I was blinded or had no legs or something),Maybe,"Again, if it affected my direct functioning I probably would. I'm quite reserved anyway, and unless it could affect my work directly, it's not my employer's business.","No, I don't think it would",Maybe,Not applicable to me (I do not have a mental illness),No,No,Yes,Maybe,Yes,1,Sometimes,Often,29.0,male,UK,UK,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear. ,No,Social stigma ,Maybe,Maybe,Somewhat not open,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,34.0,male,other,other,Other|Front-end Developer|Back-end Developer|Sales|DevOps/SysAdmin|Dev Evangelist/Advocate,Sometimes,1
0,26-100,1.0,Yes,I am not sure,No,I don't know,I don't know,I don't know,Maybe,No,Maybe,Maybe,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,"I don't have any chronic physical illnesses, but my partner does. If I had the same illness as them, I would feel that the interviewer would likely discount my ability to work effectively or feel that the necessary accommodations would be too significant.",No,Uncertain about reception. Very difficult to determine an interviewer's experience and perception of mental illness.,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,Canada,Canada,Front-end Developer|Back-end Developer,Always,1
0,500-1000,1.0,I don't know,No,Yes,No,I don't know,Very easy,Maybe,No,No,No,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"Health issues do not affect my productivity as a worker while I am in the «working» state (i.e. not absent due to some illness), so why should I discuss them in an interview?",No,"Health issues (either physical or mental) do not affect my productivity as a worker while I am in the «working» state (i.e. not absent due to some illness), so why should I discuss them in an interview?",Maybe,"No, they do not",Somewhat not open,No,No,Maybe,No,No,0,Never,Rarely,22.0,female,other,other,Other,Sometimes,0
0,26-100,1.0,Yes,Yes,No,Yes,Yes,Neither easy nor difficult,Yes,Maybe,Maybe,Maybe,No,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,"Yes, always","Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"Still too much stigma attached to some physical health issues, e.g. female anatomy-related",No,"Rather not bring up something that would affect my chances of being hired. (Yes, it's illegal to discriminate that way, but that doesn't mean that doesn't happen, yeah?)","Yes, it has","Yes, they do",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,28.0,female,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,Maybe,"If it was something major I would, but minor no.",Yes,I have several severe mental health issues that would greatly affect my work.,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,26.0,female,USA,USA,One-person shop,Always,0
0,>1000,0.0,Yes,I am not sure,Yes,Yes,Yes,I don't know,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,If they had a medical screening process that would be the appropriate time ,No,Medical screening process would be more appropriate (even though some of them only ask for diagnosed mental illnesses) ,"No, I don't think it would",Maybe,Somewhat open,"Yes, I experienced",Yes,Maybe,Maybe,No,1,Not applicable to me,Sometimes,21.0,female,Australia,Australia,Other,Never,0
0,26-100,1.0,No,No,No,No,No,Somewhat easy,Yes,Maybe,Yes,Maybe,No,Yes,1,Some did,I was aware of some,Some did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,"It is what it is. If that causes a problem, I should not work there.",Yes,"It is what it is. If that causes a problem, I should not work there.","Yes, it has",Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,38.0,male,Netherlands,Netherlands,Back-end Developer,Never,1
0,>1000,0.0,Yes,Yes,Yes,Yes,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,Depends on the issue and whether it would impact my ability to do the job in question or not. ,No,"I don't think it would help my chances of getting the job, and it's possible that it could hurt them.","Yes, I think it would",Maybe,Very open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,33.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,Yes,I am not sure,Yes,Yes,Yes,Very easy,No,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,"If it didn't affect my job, I would wait until after I was hired to discuss it with my manager",No,"If it didn't affect my job, I would discuss it with my manager after I was hired","Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,No,1,Rarely,Sometimes,28.0,female,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Maybe,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,No,I don't think its an issue that needs to be discussed in an interview.,No,I don't think that's a topic that needs to be discussed in an interview.,Maybe,Maybe,Somewhat open,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Sometimes,Often,32.0,male,USA,USA,Dev Evangelist/Advocate,Sometimes,1
0,1-5,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Somewhat difficult,Yes,Maybe,No,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,"Maybe a second or third interview, but not the first. It's not their business, unless we're both serious about working together.",No,"Same reason as physical health - it's not their business straight up, so maybe in a later interview",Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Sometimes,Often,24.0,female,Australia,Australia,Front-end Developer,Sometimes,1
0,500-1000,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,Maybe,No,Maybe,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,"Some parts of tech require you to lift things, for example.",No,Quick way to not get the job.,Maybe,"Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Sometimes,Often,35.0,male,USA,USA,Other,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,No,No,0,Sometimes,Not applicable to me,41.0,male,USA,other,Supervisor/Team Lead,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Yes,It may affect job attendance.,Maybe,May affect job performance.,Maybe,"Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",Yes,No,No,No,1,Not applicable to me,Not applicable to me,38.0,female,USA,USA,HR,Always,0
0,>1000,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat difficult,Yes,Yes,Maybe,No,No,No,1,"No, none did",N/A (not currently aware),None did,Some did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,No,"Only after I received a job offer, to ensure protection for my physical disability. ",No,Mental illness is not a protected class from discrimination and disclosing it publicly could affect my immigration status,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,24.0,female,USA,USA,Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,I don't know,I don't know,Very easy,No,No,Yes,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,"Yes, they all did",I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,Most people understand physical health issues whereas with mental health you can never be sure ,No,They may not be accepting,"No, it has not",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,30.0,male,USA,USA,Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,I don't know,Yes,Yes,I don't know,Yes,Yes,No,No,I don't know,No,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did","Yes, always","Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,No,discrimination ,No,discrimination ,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",No,No,No,No,0,Never,Often,47.0,female,USA,USA,Sales,Sometimes,0
0,>1000,1.0,Yes,I am not sure,I don't know,Yes,Yes,Somewhat easy,Maybe,No,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,I feel like physical health issues is perceived to be less in control by the person compared to mental health.,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,26.0,female,USA,USA,Front-end Developer,Never,1
0,100-500,1.0,Yes,Yes,No,I don't know,I don't know,Somewhat easy,No,No,No,Yes,Yes,No,1,"Yes, they all did",I was aware of some,I don't know,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Somewhat not open,No,I don't know,Yes,Yes,Yes,1,Sometimes,Often,32.0,male,USA,USA,DevOps/SysAdmin|Supervisor/Team Lead,Always,1
0,100-500,1.0,I don't know,No,No,Yes,I don't know,Neither easy nor difficult,Maybe,No,No,Maybe,I don't know,Yes,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,No,None of their business.,No,None of their business.,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",Yes,No,Maybe,No,0,Sometimes,Sometimes,32.0,male,USA,USA,Back-end Developer,Sometimes,1
0,500-1000,1.0,I don't know,No,I don't know,Yes,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,I've never had one that would be relevant.,Yes,"If it's relevant to the conversation, I'm happy to mention that I'm an anxious depressive and to expand as needed. I think it's important to raise the topic openly (as appropriate); it reduces stigma, and gives me an indication of the company's attitude towards mental health.","No, it has not","No, they do not",Very open,No,I don't know,Yes,Yes,Yes,1,Not applicable to me,Often,37.0,male,USA,USA,Supervisor/Team Lead,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,depends if it would jeopardize my chances of getting the position,Maybe,same as above,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,Netherlands,Netherlands,Front-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,Somewhat easy,No,No,No,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,negative connotation ,No,negative connotation,Maybe,Maybe,Somewhat not open,"Yes, I observed",I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,28.0,female,UK,UK,Sales,Sometimes,0
0,26-100,1.0,I don't know,No,Yes,I don't know,Yes,Somewhat easy,Maybe,Maybe,Maybe,No,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"I assume the candidate is at least in his second stage of the interview. Being open about our limitations is a important topic during this stage of the interview. And since you've made it trought the first, there should be no wrong answers that could cause a negative result in your interview.",No,"As the solicitant, its not my responsibitliy to do so. I dont know the company's terms and culture about this and would feel uncomfortable discussing it.",Maybe,"Yes, I think they would",Somewhat not open,No,No,No,No,No,1,Not applicable to me,Not applicable to me,22.0,male,Netherlands,Netherlands,Back-end Developer,Never,1
0,500-1000,1.0,I don't know,I am not sure,Yes,Yes,I don't know,Somewhat easy,No,Maybe,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,If it impacted the job I would most likely bring it up towards the end of the interview - more as a I would need some flexibility around this. But I'd want to be a contender for the job before I did. ,No,"I think there's a stigma around mental health and also an issue of trust. I don't want to share with someone who will violate that trust (a physical disability is more transparent than a mental one), and also deemed ""more dangerous"" to the workplace. ",Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,No,1,Never,Rarely,30.0,male,USA,USA,Dev Evangelist/Advocate,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,"It is none of their business. As long as I can do the job given parameters we both agree upon, I see no need for them to know. ",No,"Same as with a physical health issue, I take on jobs I can do, mutually agreeing on parameters (they need it done soon, I need enough flexibility to deal with mental and/or physical issues).","No, it has not",Maybe,Neutral,"Yes, I observed",Yes,Maybe,No,Yes,1,Sometimes,Often,42.0,female,USA,USA,Other,Always,0
0,100-500,1.0,Yes,I am not sure,No,I don't know,Yes,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Yes,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","No, I don't think they would",Somewhat not open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,USA,USA,Back-end Developer|DevOps/SysAdmin,Never,1
0,6-25,1.0,Yes,Yes,No,No,Yes,Very easy,Maybe,No,No,Yes,Yes,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,"i would not bring it to up until I received an offer, unless it impacted my interview performance.",No,Might mean no offer.,"Yes, I think it would","No, I don't think they would",Somewhat open,"Yes, I experienced",No,Maybe,Maybe,Yes,1,Rarely,Often,32.0,male,USA,USA,Back-end Developer,Sometimes,1
0,100-500,1.0,No,No,No,No,I don't know,Somewhat easy,Maybe,Maybe,Yes,Yes,I don't know,No,1,"No, none did",I was aware of some,None did,None did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,"No, at none of my previous employers",None did,"Yes, all of them",Maybe,Fear of discrimination,Maybe,Stigma,"Yes, it has",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,37.0,male,UK,UK,Support,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Yes,Physical is more accepted.,Maybe,Depends on the issue — depression has a stigma.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,Yes,Yes,No,Yes,1,Rarely,Sometimes,31.0,female,USA,USA,One-person shop|Designer|Front-end Developer|Back-end Developer|Support|Dev Evangelist/Advocate,Always,1
0,26-100,1.0,I don't know,No,Yes,No,I don't know,Very easy,Yes,Maybe,Maybe,Maybe,Yes,No,1,"No, none did","No, I only became aware later",None did,None did,No,None of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of being discriminated,No,Fear of being rejected or discriminated,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Never,Often,31.0,male,USA,USA,Dev Evangelist/Advocate|Support|Back-end Developer,Always,1
0,26-100,0.0,No,I am not sure,No,No,I don't know,Very easy,Maybe,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,I don't know,No,Privacy,"Yes, it has",Maybe,Very open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,other,other,Front-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,If it's relevant or would affect my duties.,Maybe,"If it's relevant or would affect my duties. For example, if I was in a situation where I would need my team to be aware of my condition to help me deal with an acute episode then I would make sure that my team is properly equipped to do so.",Maybe,Maybe,Somewhat open,No,I don't know,No,Maybe,No,0,Sometimes,Sometimes,30.0,male,USA,USA,One-person shop,Sometimes,0
0,100-500,1.0,Yes,Yes,No,I don't know,I don't know,I don't know,Maybe,No,Maybe,Yes,No,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,"Yes, at all of my previous employers",Some did,None of them,No,can't imagine this making my desired outcome more likely,No,pretty sure this would not work out in my favor,"Yes, I think it would",Maybe,Neutral,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,36.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,No,No,No,I don't know,I don't know,Maybe,No,No,No,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,Not sure I'd be discriminated against by just not getting an offer. It'd be very hard to prove.,No,"Because while discriminating for mental health is not legal, one never gets reasons for a job offer not being extended, so it can only hinder.","Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),"Yes, I observed",Yes,Yes,No,Yes,1,Not applicable to me,Not applicable to me,38.0,male,USA,USA,Back-end Developer,Always,1
0,26-100,1.0,Yes,Yes,No,No,I don't know,Somewhat easy,No,No,Yes,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"Because as long as I can do my job, it's really not any of their business.",No,Same as above.,Maybe,"No, I don't think they would",Somewhat open,No,No,No,Yes,Yes,1,Never,Often,24.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Maybe,Maybe,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,I'm hesitant to bring up anything that might make me seem less employable but has no actual effect on my productivity.,No,Same as above -- hesitant to bring up anything that doesn't affect my work but might make me seem less employable.,Maybe,Maybe,Neutral,No,I don't know,Yes,Yes,No,0,Never,Rarely,26.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,I am not sure,Yes,I don't know,I don't know,I don't know,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"Don't currently have one, so not sure I'd have anything to bring up. Haven't had to think about it.",No,General sense of stigma.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,37.0,male,USA,USA,Dev Evangelist/Advocate|DevOps/SysAdmin,Never,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,No,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,Fear of discrimination,No,No need to disclose so early as it may not be an issue. Don't want to give them a reason not to pick me!,Maybe,Maybe,Neutral,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,27.0,female,UK,UK,Designer,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,It's none of her business if it doesn't impact my ability to work,No,Not the right sotuation to talk about a mental issue,Maybe,Maybe,Very open,Maybe/Not sure,No,Yes,No,Yes,1,Rarely,Rarely,32.0,male,other,other,One-person shop|Back-end Developer|Sales|DevOps/SysAdmin|Executive Leadership,Always,1
0,26-100,1.0,Yes,I am not sure,Yes,I don't know,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),Some did,None did,I don't know,I don't know,None of them,Some of my previous employers,"Yes, at all of my previous employers",Some did,None of them,Yes,Because I value honesty very much and know that setting expectations in very beneficial for everybody,Maybe,Stigma,"No, I don't think it would",Maybe,Very open,No,No,Yes,No,No,1,Never,Sometimes,32.0,male,Netherlands,Netherlands,Back-end Developer,Never,1
0,6-25,0.0,Yes,I am not sure,No,Yes,No,Neither easy nor difficult,No,No,Yes,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Depends on the view of the employer about mental health.,Maybe,Depends on the amount of open view on it,"No, I don't think it would","No, I don't think they would",Somewhat open,No,I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,30.0,male,Netherlands,Netherlands,Front-end Developer|Back-end Developer|Support|DevOps/SysAdmin,Never,1
0,26-100,1.0,No,No,Yes,No,I don't know,Very difficult,No,No,Yes,Yes,Yes,No,1,Some did,"No, I only became aware later",None did,None did,"Yes, always",Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Yes,If it affected my work or was something obvious I would talk about it.,No,Because I would be scared they would think that it affects my work and I'm not worth hiring.,"Yes, I think it would","No, I don't think they would",Somewhat open,No,No,Yes,Yes,Yes,1,Sometimes,Sometimes,26.0,female,Germany,Germany,Dev Evangelist/Advocate,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,It depends how well I connected with the interviewer,No,It's hard to talk about in that high pressure situation,"No, I don't think it would",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,27.0,female,UK,UK,Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead|Other,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,I don't know,No,Yes,Yes,1,Never,Often,27.0,male,Netherlands,Netherlands,One-person shop,Always,0
0,26-100,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,I don't know,No,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,It may affect my availability to perform my job,Maybe,"I wouldn't because for fear of not being hired because of it, but at the same time I feel like I should It may affect my availability to perform my job",Maybe,Maybe,Very open,No,Yes,Yes,Maybe,No,1,Not applicable to me,Sometimes,29.0,male,other,other,Back-end Developer,Always,1
0,26-100,1.0,Yes,Yes,Yes,Yes,I don't know,I don't know,Maybe,Maybe,Yes,Maybe,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,26.0,other,Germany,Germany,Back-end Developer|DevOps/SysAdmin,Never,1
0,100-500,1.0,Yes,I am not sure,No,No,I don't know,Somewhat difficult,No,No,Maybe,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Not relevant,No,Not relevant,"Yes, I think it would",Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,23.0,female,USA,USA,Back-end Developer,Never,1
0,100-500,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,I wouldn't want to work for an employer who couldn't handle the fact that I (or any coworkers) might have a health issue.,Yes,I wouldn't want to work for an employer who couldn't handle the fact that I (or any coworkers) might have a health issue.,"No, I don't think it would","No, I don't think they would",Not applicable to me (I do not have a mental illness),No,Yes,Yes,No,Yes,1,Rarely,Sometimes,30.0,male,USA,USA,Supervisor/Team Lead|Support,Sometimes,0
0,>1000,0.0,Yes,No,I don't know,Yes,I don't know,Somewhat difficult,Maybe,Maybe,No,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,No reason to risk the job,No,No reason to risk making them concerned about it,Maybe,Maybe,Somewhat not open,"Yes, I observed",Yes,Yes,Yes,Yes,0,Not applicable to me,Sometimes,40.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Very difficult,Maybe,Maybe,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,No,You can be assured that it would not be a taken as a negative. ,No,"Same, although would have greater concern about employer viewing mental health as worse that a physical health issue as well as overall negative views of mental health issues. ","Yes, I think it would",Maybe,Not open at all,"Yes, I observed",I don't know,Maybe,Maybe,Yes,1,Sometimes,Sometimes,46.0,male,USA,USA,Supervisor/Team Lead|Support,Sometimes,0
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"Yes, at all of my previous employers",I don't know,None of them,Maybe,Unknown ramifications. ,Maybe,Unknown ramifications. ,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,I don't know,Maybe,No,No,No,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always",I don't know,Some of them,"No, at none of my previous employers",I don't know,I don't know,Some of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Neutral,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,No,No,No,No,I don't know,I don't know,Yes,Maybe,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,27.0,female,Canada,USA,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,if relevant to job,Maybe,if relevant to job,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,35.0,male,USA,USA,Executive Leadership,Always,0
0,26-100,1.0,Yes,Yes,No,Yes,I don't know,Neither easy nor difficult,Maybe,No,Maybe,No,No,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,Sometimes,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,"I want to be considered the same as every other applicant, and not be categorized by my limitations.",No,"I want to be considered the same as every other applicant, and not be categorized by my limitations.","Yes, I think it would",Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,26.0,female,USA,USA,HR|Dev Evangelist/Advocate|Sales,Sometimes,1
0,100-500,1.0,I don't know,No,I don't know,I don't know,I don't know,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"If the potential employer explained their position on support for employees with physical health issues at the start of an interview, that would encourage me to speak of it.",Maybe,"Again, if the employer stated their position on mental health issues and support for potential employees then I would feel comfortable talking about it.",Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,Australia,Australia,Back-end Developer,Always,1
0,26-100,0.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,No,No,Maybe,Maybe,Yes,Yes,1,I don't know,N/A (not currently aware),Some did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,Maybe,"Afraid of niet being understood, that makes it hard to talk about it. Especially during an interview.",Maybe,"Yes, they do",Somewhat not open,Maybe/Not sure,Yes,Yes,Yes,No,1,Rarely,Sometimes,29.0,male,Netherlands,Netherlands,DevOps/SysAdmin|Back-end Developer,Never,1
0,100-500,1.0,I don't know,No,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Maybe,I wouldn't know if I could trust them at that stage,No,I wouldn't know if I could trust them at that stage,"No, I don't think it would","No, I don't think they would",Somewhat open,No,No,No,No,No,1,Not applicable to me,Not applicable to me,34.0,male,UK,UK,Back-end Developer|Dev Evangelist/Advocate|Supervisor/Team Lead,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),I don't know,None did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,Some did,None of them,No,"unless it would directly inhibit my ability to perform the presumed role or job description i find my physical medical health to be my responsibility and business altogether next to my diet, sexual preferences and similar information. ",No,I personally don't believe that generalized employers have the capacity to grapple with the possibility or potential for any mental health issues when they are worried about keeping their companies afloat.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,No,No,0,Not applicable to me,Often,27.0,male,USA,USA,DevOps/SysAdmin|One-person shop,Sometimes,1
0,100-500,1.0,No,No,No,No,Yes,I don't know,Maybe,No,Maybe,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,Would not wish to prejudice the interview process,Maybe,Would not wish to prejudice the interview process,Maybe,Maybe,Somewhat not open,Maybe/Not sure,No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,39.0,male,UK,UK,Executive Leadership,Sometimes,0
0,100-500,1.0,I don't know,No,I don't know,I don't know,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers",Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Very open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,UK,UK,Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,500-1000,1.0,No,No,No,No,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,First I would like them to focus on my abilities and skills. Then when I would pass the initial interview rounds I would bring it up.,No,The same as previous one.,Maybe,"No, I don't think they would",Somewhat open,No,No,Yes,No,Yes,1,Sometimes,Often,31.0,male,other,other,Supervisor/Team Lead,Sometimes,0
0,26-100,0.0,No,No,No,No,I don't know,Somewhat difficult,Maybe,No,No,Yes,No,Yes,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Would very much depend on the issue and what impact I thought it would have on the role I was interviewing for.,No,"I don't think enough people are aware of mental health issues, so it is more likely to just have a negative impact","Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,UK,UK,Supervisor/Team Lead|Front-end Developer|Back-end Developer,Never,1
0,26-100,1.0,Yes,No,No,I don't know,Yes,Neither easy nor difficult,Maybe,Maybe,Yes,Maybe,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"Is it relevant to the job, is it something I can work around.",Maybe,"Is it relevant to the job, and is it something I can work around.","Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I experienced",Yes,Maybe,Maybe,No,1,Sometimes,Sometimes,44.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,Yes,No,I don't know,No,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,"Yes, they all did","No, I only became aware later",Some did,Some did,I don't know,Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,USA,USA,Back-end Developer,Sometimes,1
0,100-500,0.0,Yes,I am not sure,No,No,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,personal info should not be part of interview process,No,Interview is not the place/time for personal info,Maybe,Maybe,Very open,No,Yes,Yes,Yes,Yes,1,Never,Sometimes,55.5,female,USA,USA,Back-end Developer|Front-end Developer|Designer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,I don't know,None of them,"Yes, at all of my previous employers",Some of my previous employers,"Yes, they all did",Some of them,Yes,BECAUSE,Maybe,BECAUSE,Maybe,"No, I don't think they would",Very open,"Yes, I observed",I don't know,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,Canada,USA,Executive Leadership,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,No,Since it doesn't affect my job performance it's none of their business.,Maybe,Maybe,Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,38.0,male,USA,USA,One-person shop|Back-end Developer|Other,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,If I thought it irrelevant to the job.,Maybe,If it seemed relevant.,Maybe,"No, I don't think they would",Neutral,Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Not applicable to me,Often,55.0,male,USA,USA,One-person shop|Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,No,It would probably impact my application negatively (even if they did not admit so),No,"Same reason, basically. And, it seems like it might be too early in a relationship to do so. Why should they have a window into my personal life, just because they're my employers?","Yes, it has","Yes, they do",Neutral,"Yes, I experienced",Yes,Maybe,Maybe,No,1,Rarely,Often,28.0,male,other,other,One-person shop|Back-end Developer,Sometimes,1
0,>1000,0.0,I don't know,I am not sure,No,No,No,Neither easy nor difficult,Yes,No,No,Maybe,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,No,Fear of discrimination,No,Stigma,Maybe,"Yes, I think they would",Very open,"Yes, I observed",I don't know,Maybe,Maybe,No,1,Often,Sometimes,35.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin,Never,1
0,100-500,1.0,Yes,No,No,I don't know,I don't know,Somewhat difficult,Maybe,Maybe,Maybe,No,Yes,No,1,Some did,I was aware of some,None did,None did,No,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,No,Fear of discrimination as a racial minority with a physical health issue,No,Fear of discrimination as a racial minority with a mental health issue,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Often,Often,26.0,male,USA,USA,Back-end Developer,Always,1
0,6-25,1.0,I don't know,I am not sure,Yes,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,I don't know,I don't know,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,No,No,Maybe,No,0,Not applicable to me,Not applicable to me,22.0,female,USA,USA,Front-end Developer|Back-end Developer,Never,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Worries about discrimination,No,Worried about discrimination,"Yes, I think it would",Maybe,Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,No,No,No,No,Somewhat difficult,Maybe,Maybe,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,1,Not applicable to me,Not applicable to me,31.0,male,UK,UK,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"It is by law none of the employer's business and very unlikely to help in procuring a job (a job interview is a sale situation, not a full disclosure session - for both sides: I.e. a business is unlikely to volunteer negative information on its business operations in an interview, too).
The only exception would be if the health issues are going to materially affect my ability to perform the job being offered, in which case I wouldn't be in the interview in the first place, or it would only take place based on the understanding that this was the case. ",No,For the same reasons as for physical health issues...,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,40.0,male,Germany,Germany,Executive Leadership,Sometimes,0
0,>1000,0.0,Yes,Yes,No,Yes,Yes,Neither easy nor difficult,Maybe,No,Maybe,Yes,No,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,Maybe,"It would depend on the job I'm applying for. Would it be something like ""I just need a special chair"" or would it be more along the lines of ""I need you to cater to my random days off."" Either one _should_ be the same, however we all know that each response would not be treated as such.",No,"For the same reason as above, but I don't know at all whether the employer views mental health the same as physical health.",Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,No,No,Yes,Yes,1,Sometimes,Sometimes,26.0,male,USA,USA,DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Sometimes,1
0,1-5,1.0,No,No,No,No,No,Very difficult,Yes,No,No,No,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,Get the job first.,No,Keeping it secret is essential to getting & holding jobs at some companies.,"Yes, it has","Yes, they do",Somewhat not open,"Yes, I experienced",Yes,Yes,Yes,No,1,Sometimes,Sometimes,36.0,male,USA,USA,One-person shop,Sometimes,0
0,26-100,1.0,Yes,Yes,No,No,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,If it affected my availability.,No,Afraid of the stigma,Maybe,"No, they do not",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,33.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,500-1000,1.0,Yes,I am not sure,Yes,No,I don't know,Very easy,No,No,Yes,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"I kind of feel uncomfortable saying I can't do things, although I guess I would have to in certain situations",No,I'm lucky that I'm mostly functional even when not doing well so I wouldn't disclose until I was at the company and had a better idea of how people react to it. ,"No, I don't think it would","No, they do not",Somewhat not open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,24.0,female,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,Very easy,Maybe,Maybe,No,Maybe,No,No,1,"No, none did",N/A (not currently aware),Some did,Some did,I don't know,None of them,Some of them,Some of my previous employers,I don't know,None did,None of them,No,Fear of discrimination,No,Stigma,"Yes, it has","Yes, they do",Somewhat not open,No,Yes,Maybe,Maybe,No,0,Often,Rarely,22.0,male,other,other,Front-end Developer|Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,Yes,No,Yes,I don't know,Somewhat difficult,No,No,Maybe,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,"Yes, they all did",I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Why risk implicit or overt bias?,No,Why risk implicit or overt bias?,"No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Rarely,Rarely,33.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Support,Always,1
0,>1000,1.0,Yes,No,No,I don't know,I don't know,Somewhat easy,Maybe,Maybe,Maybe,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,There is established non-discrimination policy for disabilities or physical ability,No,Because I fear repercussions including not being hired,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,No,Yes,Yes,Yes,1,Rarely,Sometimes,37.0,female,USA,USA,Support,Sometimes,0
0,6-25,1.0,Yes,I am not sure,No,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"I don't know that it's good, but I typically take management of physical health issues as a personal matter, and wouldn't involve a potential employer.",Maybe,"Because of the nature of our work, mental health issues are far more impactful. If I thought it needed to be accounted for, I would involve the potential employer to ensure they can work with me.",Maybe,"No, I don't think they would",Somewhat open,"Yes, I observed",No,Yes,Maybe,No,0,Rarely,Sometimes,29.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Front-end Developer,Always,1
0,1-5,0.0,Not eligible for coverage / N/A,No,Yes,No,Yes,Neither easy nor difficult,No,No,Yes,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"It depends on whether or not he physical health issue would prevent me from doing my job. If not, I would not bring it up.",No,I know there's widespread stigma toward mental health. I would avoid discussion this in an interview (unless I didn't want the job),Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,I don't know,Maybe,No,No,1,Not applicable to me,Not applicable to me,38.0,male,USA,USA,Back-end Developer,Sometimes,1
0,1-5,1.0,No,No,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,if it affected the ability for someone to preform their job.,No,taboo ,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Maybe,Maybe,No,0,Sometimes,Not applicable to me,33.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,1-5,1.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,Yes,Yes,No,No,No,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,No,See it as potentially influencing my hirability. ,No,Stigma could influence their desire to hire me. ,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",Yes,Yes,Maybe,Yes,1,Never,Often,44.0,female,Canada,Canada,Executive Leadership,Always,0
0,6-25,0.0,Yes,I am not sure,No,No,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,I don't currently have any I'm concerned about.,No,"That's sensitive, and I'd need to know them better first.",Maybe,"No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Never,Sometimes,23.0,male,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,One-person shop,Sometimes,0
0,>1000,0.0,I don't know,No,No,No,I don't know,Very difficult,Yes,No,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them",Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,It depends on the physical health issue. E.g. Bad Knees vs Bad Allergies,No,Would be afraid that it would negatively affect my potential as a hiring candidate.,"Yes, I think it would","Yes, I think they would",Very open,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,30.0,male,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,26-100,1.0,Yes,No,No,No,I don't know,Neither easy nor difficult,No,No,Yes,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did","Yes, always",I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers","Yes, they all did",None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,No,No,No,Somewhat easy,No,No,Maybe,Maybe,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,Depends on the feel of the interview,No,"I feel that it would only hurt my chances at employment, or have no bearing at all.",Maybe,"No, I don't think they would",Somewhat not open,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Often,39.0,male,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,6-25,1.0,No,No,No,No,I don't know,Somewhat difficult,Yes,No,No,No,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,No,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Yes,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Never,Sometimes,24.0,female,USA,USA,Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,"Regardless of what disability legislation says, health issues are a surefire way to get turned down for work.",No,Most people tend to assume that being mentally ill means you're going to be crap writing code.,Maybe,Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,27.0,male,Netherlands,UK,Other|Executive Leadership|Supervisor/Team Lead|Dev Evangelist/Advocate|DevOps/SysAdmin|Back-end Developer|One-person shop,Always,1
0,>1000,0.0,Yes,Yes,Yes,Yes,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,Fear of discrimination,No,"I'd rather ask about health benefits and look at it from there. No need to bring it up in an interview unless it directly affects the job, or is specifically brought up by the interviewer",Maybe,"Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,35.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,I don't know,I don't know,Neither easy nor difficult,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,None did,None of them,Maybe,I believe I would just for the sake of transparency,Maybe,It would depend on my general feelings of the employer/my issue,Maybe,Maybe,Neutral,No,Yes,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,23.0,male,USA,USA,Front-end Developer,Never,1
0,>1000,0.0,Yes,I am not sure,I don't know,Yes,Yes,Very easy,No,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat not open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,USA,USA,Other,Sometimes,0
0,6-25,1.0,Yes,I am not sure,No,No,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"It depends on if it was relevant or affected my job in any way. Also, if I felt like I could trust the person in my interview.",Maybe,See above answer - related to trust.,Maybe,Maybe,Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,DevOps/SysAdmin|Front-end Developer|Back-end Developer,Sometimes,1
0,26-100,0.0,Yes,Yes,No,No,Yes,Neither easy nor difficult,No,No,Maybe,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,Fear of discrimination,Maybe,This would depend on the severity of an effect the issue could have on work performance.,Maybe,"No, I don't think they would",Neutral,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Sometimes,Sometimes,27.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Sometimes,1
0,1-5,1.0,I don't know,I am not sure,No,No,I don't know,Very easy,No,No,Maybe,Maybe,Yes,No,1,I don't know,I was aware of some,None did,None did,Sometimes,None of them,None of them,Some of my previous employers,Some of my previous employers,"Yes, they all did",None of them,Maybe,If it affected my ability to perform at the job I would bring it up.,Maybe,I would bring it up if it affected day to day work. Otherwise probably would not because the stigma around it.,Maybe,Maybe,Somewhat not open,No,Yes,Maybe,Maybe,No,0,Rarely,Sometimes,27.0,female,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer|Designer,Always,1
0,>1000,1.0,Yes,I am not sure,No,Yes,I don't know,Somewhat difficult,Maybe,No,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Seems irrelevant.,No,Also irrelevant to getting a job.,Maybe,"Yes, I think they would",Neutral,No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,27.0,female,USA,USA,Front-end Developer,Never,1
0,6-25,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,Maybe,Maybe,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,42.0,male,USA,USA,Front-end Developer|Back-end Developer,Sometimes,1
0,6-25,0.0,Yes,I am not sure,No,No,Yes,Somewhat difficult,Maybe,Maybe,No,Maybe,No,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,"I don't see the need. If I'm at the interview, it's because I am fine working there as I am.",No,"I don't see the need. If I'm at the interview, it's because I am fine working there as I am.",Maybe,Maybe,Not applicable to me (I do not have a mental illness),Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,USA,USA,Front-end Developer,Never,1
0,6-25,1.0,I don't know,I am not sure,No,No,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,"Yes, they all did","No, I only became aware later",Some did,Some did,Sometimes,None of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat not open,No,Yes,Yes,Maybe,Yes,1,Sometimes,Often,26.0,male,other,other,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Neither easy nor difficult,Yes,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Maybe,"A sleep-related disorder prevents me from being able to arrive at early hours, which a large part of employers require.",No,"I wouldn't feel comfortable discussing mental health issues with anybody but really close friends and/or other sufferers in the first place. But also, it's not like it wouldn't hurt my chances of landing a position.","Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,28.0,male,other,other,Back-end Developer,Never,1
0,6-25,1.0,I don't know,No,No,No,I don't know,I don't know,Yes,No,No,No,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",None of them,"Yes, at all of my previous employers","No, at none of my previous employers",None did,None of them,Yes,Fear of discrimination,No,"I'm uncertain how the ADA applies to mental health, or whether it even applies at all","Yes, I think it would","Yes, I think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Front-end Developer,Sometimes,1
0,100-500,1.0,Yes,No,No,Yes,Yes,I don't know,Maybe,No,No,No,I don't know,No,1,Some did,I was aware of some,None did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Somewhat open,No,Yes,Yes,No,Yes,1,Rarely,Sometimes,32.0,male,USA,USA,Front-end Developer|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,a,No,a,Maybe,Maybe,Very open,No,I don't know,Yes,Yes,No,0,Not applicable to me,Sometimes,43.0,male,USA,USA,Front-end Developer|Back-end Developer,Always,1
0,26-100,1.0,Yes,I am not sure,Yes,Yes,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Maybe,No,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,It seems like it would be hard to hide a physical issue.,Maybe,I would if I felt it would be a serious impediment to both parties as it pertains to my ability to do the job. Otherwise it could feel a bit like trapping the employer.,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,34.0,male,USA,USA,Back-end Developer,Never,1
0,6-25,1.0,I don't know,I am not sure,No,I don't know,No,Neither easy nor difficult,Maybe,Maybe,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,Sometimes,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,It would depend on whether I thought it might impact the job.,Maybe,Depend on the job,Maybe,Maybe,Somewhat not open,No,No,Maybe,Maybe,No,1,Rarely,Sometimes,55.5,female,USA,USA,Other,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of being passed over for a healthier candidate.,No,Fear that it would disqualify me in their mind.,Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,0,Sometimes,Sometimes,50.0,male,USA,USA,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"I'm ashamed / shy to admit something like this to a stranger. Unless I have a bond of a certain amount of intimacy with a person, I would never talk about myself in personal terms.",No,Same as above.,Maybe,Maybe,Not open at all,"Yes, I observed",Yes,Maybe,Yes,Yes,1,Often,Often,38.0,male,other,other,One-person shop|Back-end Developer|DevOps/SysAdmin|Dev Evangelist/Advocate|Other,Sometimes,1
0,6-25,0.0,Not eligible for coverage / N/A,I am not sure,I don't know,I don't know,I don't know,I don't know,Yes,Maybe,Maybe,Maybe,No,Yes,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,because it is important to do the job,Yes,because it hurts me,"Yes, it has",Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,51.0,male,Germany,Germany,Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,No,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",None did,None of them,Yes,The employers reaction would tell a lot of the type of company I'd be joining. ,Yes,Reaction would tell a lot of the type of employer they are. ,"Yes, I think it would","Yes, I think they would",Very open,Maybe/Not sure,No,Yes,No,Yes,1,Never,Rarely,38.0,male,other,other,Executive Leadership,Sometimes,0
0,500-1000,1.0,I don't know,I am not sure,I don't know,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,I don't know,Some of them,"Yes, at all of my previous employers",Some of my previous employers,I don't know,None of them,Yes,"If it was relevant to the job, then yes.",Maybe,"If was relevant to the job, then yes. But I do think that discussing mental health in a job interview is more risky (because of the negative perception it could create) than discussing physical health issues.",Maybe,Maybe,Very open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,34.0,male,USA,USA,Front-end Developer|Designer,Always,1
0,6-25,1.0,No,No,No,No,I don't know,Somewhat difficult,Maybe,Maybe,Yes,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,I would bring it up only if it were already obvious and/or would not be likely to affect my performance.,Maybe,"I feel that a mental health issue would not be something I'd want them to take into account as part of the hiring process, unless it were a serious enough issue that I wouldn't want to work for an employer who was not willing to make accommodations for my issue.","Yes, I think it would","No, I don't think they would",Somewhat open,No,No,Yes,Maybe,Yes,1,Sometimes,Sometimes,43.0,male,USA,USA,Front-end Developer|Back-end Developer,Always,1
0,100-500,1.0,Yes,No,No,Yes,I don't know,Somewhat difficult,Yes,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"I would rather not bring something up unless I was sure it would impact my job, because I am always concerned that people will find it easier to turn me down as a candidate.",No,They are still stigmatized and without obvious mentions of acceptance by the employer beforehand I would worry that there would be hidden (or not so hidden) prejudice. Again I would worry about being written off for the job.,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,Maybe,No,0,Not applicable to me,Rarely,43.0,female,USA,USA,DevOps/SysAdmin,Sometimes,1
0,6-25,1.0,No,I am not sure,Yes,No,I don't know,Somewhat difficult,Maybe,No,No,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),Some did,None did,No,"Yes, all of them",None of them,"Yes, at all of my previous employers",Some of my previous employers,None did,"Yes, all of them",No,Not sure. Want to put my best foot forward.,No,Depression is my entire life. Work shouldn't be my life.,"Yes, it has",Maybe,Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Often,Often,44.0,male,USA,USA,DevOps/SysAdmin,Always,1
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Very easy,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,It has no legal bearing on the hiring process,No,It has no legal bearing on the hiring process,"Yes, I think it would",Maybe,Neutral,Maybe/Not sure,I don't know,Maybe,Maybe,Yes,1,Rarely,Sometimes,35.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,26-100,1.0,Yes,Yes,No,I don't know,I don't know,Very easy,No,No,Maybe,Yes,Yes,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Not sure if they're allowed to ask. If it came up I practice openness and honestly by principle.,Maybe,"Not having a mental illness, I assume there is a stigma around the issue for people who haven't experienced it.",Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,50.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,Yes,Yes,No,No,Yes,Very difficult,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Neutral,No,No,Yes,Maybe,Yes,1,Rarely,Often,29.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,Yes,No,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Maybe,"If the physical health issue required some special equipment, like a standing desk or the like, I would bring it up. Otherwise, I wouldn't deem it necessary for them to know.",Maybe,"I would discuss a mental health issue only at an interview that is trending towards an offer, mostly to review what mental health covered their insurance provides.","No, it has not","No, they do not",Very open,No,Yes,No,Yes,Yes,1,Rarely,Often,29.0,male,USA,USA,Front-end Developer,Never,1
0,500-1000,0.0,Yes,No,No,I don't know,I don't know,Very easy,Maybe,Maybe,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,I'd be worried that it would reflect negatively against me and possibly hinder me as a potential candidate,Maybe,I would be worried that it would hinder my chances as a potential candidate,"Yes, I think it would",Maybe,Very open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,36.0,male,Canada,Canada,DevOps/SysAdmin|Front-end Developer|Back-end Developer|Support,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"It's a market, it would devalue the offering stupid",Maybe,It's a market,"No, I don't think it would",Maybe,Neutral,"Yes, I observed",Yes,Maybe,Maybe,No,0,Rarely,Sometimes,33.0,male,Australia,Australia,Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,Would sour interview experience,No,"Work mostly in small teams: no-one would consider you and small teams could excuse it away as ""not a good personality fit""","Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",No,Yes,Maybe,Yes,1,Sometimes,Often,50.0,male,Australia,Australia,One-person shop,Sometimes,0
0,>1000,1.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,Maybe,Maybe,No,No,No,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"If it isn't directly job affecting, I don't think it should matter.",No,"Mental health issues don't seem to be treated like ""real"" issues",Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Yes,Maybe,Yes,1,Sometimes,Sometimes,46.0,male,USA,USA,DevOps/SysAdmin,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,No,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,Only if it was an obvious thing. If an employer cant tell i wont risk it,No,I wont get the job,"Yes, it has","Yes, they do",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Often,44.0,female,other,other,One-person shop,Always,0
0,>1000,1.0,Yes,I am not sure,No,I don't know,No,Very difficult,Yes,Maybe,Maybe,No,No,Yes,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Maybe,"If I had mobility problems that required an accessible office or special accomodations, I'd want to make sure those were available",No,"Might allude to it under the guise of ""work-life balance"" or something, but the only valid reason to hire me is the quality of my brain so it would be extremely detrimental to call it into question","Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I observed",Yes,Maybe,Maybe,No,1,Not applicable to me,Often,23.0,other,USA,USA,DevOps/SysAdmin,Sometimes,1
0,6-25,1.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Yes,No,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Neutral,Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Sometimes,Often,41.0,male,USA,USA,Other|Supervisor/Team Lead|Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,1.0,Yes,No,Yes,I don't know,I don't know,Somewhat easy,No,Maybe,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did",I don't know,None of them,None of them,"Yes, at all of my previous employers","No, at none of my previous employers","Yes, they all did",None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Neutral,Maybe/Not sure,No,No,Maybe,No,0,Never,Never,31.0,male,Canada,Canada,Front-end Developer,Sometimes,1
0,1-5,1.0,No,Yes,No,No,No,Very difficult,Yes,No,No,No,No,Yes,1,"No, none did","No, I only became aware later",None did,None did,No,"Yes, all of them",None of them,Some of my previous employers,"No, at none of my previous employers",None did,"Yes, all of them",Maybe,"May not obtain job. NOTE: Was terminated for mental health snap - schizoaffective disorder type one, depressive. All I did was cry for 5 minutes...then lapsed in to confusion. Terminated next week.",No,I have been hospitalized twice at Hines Madden Hospital. This issue is a bridge too far to cross. Been out of full-time work since let go Jan 2010. Trying to get back in in next two years. Working part-time installing systems. Was a sys admin.,"Yes, I think it would","Yes, I think they would",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Often,Often,55.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,26-100,1.0,No,No,No,No,I don't know,Very difficult,Yes,Maybe,Maybe,No,No,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,No,Yes,No,No,0,Never,Often,34.0,male,USA,USA,Supervisor/Team Lead|Front-end Developer|Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,6-25,1.0,Yes,Yes,No,No,I don't know,Somewhat difficult,No,No,Yes,Yes,Yes,No,1,Some did,"No, I only became aware later",Some did,None did,No,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,"If I had physical health issues, I would want to make sure there are provisions for my health needs or concerns before accepting a position with a new company.",Maybe,"I may not bring up a mental health issue in an interview with a potential employer, because I would be afraid that it might influence their decision about whether or not to hire me. They might view me as unstable or unqualified to properly do my job.","Yes, it has","Yes, they do",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,No,1,Often,Often,28.0,female,USA,USA,Back-end Developer|Front-end Developer,Always,1
0,6-25,1.0,Yes,No,No,No,I don't know,Very difficult,No,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,bias,No,I actually don't think it's any of their business.,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,33.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,No,No,Yes,No,Neither easy nor difficult,Yes,Yes,Maybe,No,No,Yes,1,Some did,I was aware of some,Some did,Some did,No,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,Some did,"Yes, all of them",No,"I believe that would bias the interview against me for ""culture"" reasons. ",No,Same as physical. ,"Yes, I think it would",Maybe,Very open,"Yes, I experienced",Yes,Yes,No,Yes,1,Sometimes,Sometimes,29.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,>1000,0.0,Yes,I am not sure,Yes,Yes,Yes,Somewhat difficult,No,No,Maybe,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,No,"Yes, all of them","Yes, all of them","Yes, at all of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,It might depend on how I think they would perceive that issue in relation to my ability to do the job.,No,I definitely think the employer might worry about my ability to perform the job.,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,No,Yes,Yes,1,Rarely,Sometimes,33.0,female,USA,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Other|Dev Evangelist/Advocate|One-person shop,Sometimes,1
0,>1000,1.0,Yes,Yes,Yes,Yes,I don't know,I don't know,Maybe,No,No,Maybe,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,Yes,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,28.0,male,USA,USA,Dev Evangelist/Advocate,Sometimes,1
0,26-100,1.0,Yes,No,Yes,Yes,I don't know,I don't know,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,I feel that is too early in the process. Guess it would depend on how serious I was about working for and how serious a company was about hiring me. ,No,See above,"Yes, I think it would",Maybe,Somewhat open,No,Yes,Yes,No,No,1,Not applicable to me,Rarely,32.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,6-25,1.0,Yes,Yes,No,No,I don't know,Neither easy nor difficult,No,No,No,Maybe,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Yes,Fear of discrimination,No,"Not unless I knew what their track record was with mental illness, I would have to know I could trust them and that they wouldn't judge me negatively",Maybe,Maybe,Somewhat not open,"Yes, I observed",Yes,Maybe,Maybe,No,1,Not applicable to me,Often,36.0,female,USA,USA,Front-end Developer,Never,1
0,>1000,0.0,I don't know,I am not sure,Yes,I don't know,Yes,Somewhat easy,Yes,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Yes,Fear of discrimination,No,"Getting through interview would be hard enough, let alone risk negative response","Yes, I think it would","Yes, I think they would",Not open at all,No,No,No,Maybe,No,0,Often,Not applicable to me,45.0,male,UK,UK,DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,I don't know,Some did,None of them,Yes,"I believe in playing open cards; If someone has a problem with it, then better get aware of it early on; In IT there are plenty of alternatives",Maybe,Same reason mostly. Though probably depend on particular issue and how it may affect the work life,Maybe,"No, I don't think they would",Neutral,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,other,UK,Back-end Developer,Always,1
0,>1000,0.0,No,No,Yes,Yes,I don't know,Somewhat easy,Maybe,No,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"Because you cannot lie about it, since it's gonna show up at some point since physical disorder often comes with not being able to do certain things the same way as people who don't suffer disorders.",Yes,"I would bring it up because I think it's not right to hide it, even for yourself, you could have an increased stress from trying to hide the disorder which could make your disorder even worse than it should be. Also if a company isn't willing to hire you because you suffer from a mental disorder, it's probably a company you wouldn't want to work for.",Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,23.0,male,other,other,Support,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,Sometimes,None of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"If I believe it would be relevant to the job I'm interviewing for (if I would need some kind of accommodation for my issue). Otherwise, I think it would reduce my chances of being hired.",Maybe,"Same as physical -- if I think I would need special treatment or accommodation to do the work, I would bring it up as soon as it's relevant. ",Maybe,Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Maybe,Yes,1,Rarely,Often,54.0,female,Canada,Canada,One-person shop,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,"It would depend on the situation. For example, if there were office cats, it would be a problem as I'm allergic to cats. Otherwise, I probably wouldn't say anything unless there was a specific discussion about desks & ergonomics. I wouldn't want them to worry that they were going to have to spend a fortune on special desks or chairs, etc.",No,I think they would not hire me if they knew I had depression issues.,"Yes, it has","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,55.5,female,USA,USA,Other|Back-end Developer|Front-end Developer|One-person shop,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,I don't know,Yes,Yes,No,No,No,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Because they wouldn't hire me probably,No,I'd bet they wouldn't hire me,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,29.0,female,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,Not eligible for coverage / N/A,No,No,I don't know,I don't know,Neither easy nor difficult,Maybe,No,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Yes,Physical health issues in our line of work rarely effect our ability to perform.,No,Mental health issues can and often do effect our ability to perform.,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I experienced",I don't know,Yes,No,Yes,1,Sometimes,Often,31.0,male,Australia,Australia,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Problems are problems. No one wants to hear about problems. They want solutions. Possible physical issues could lead to other issues that could impact performance.,No,"They would immediately give the ""short interview"" and show you the door. That's career suicide. What if someone said ""I'm manic depressive, sometimes I can't get shit done because I'm too depressed. Other times I'll get more done in 4 hours than your entire team will in a week."" Most companies are going to think you're nuts.","Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,No,No,0,Rarely,Not applicable to me,37.0,male,USA,USA,Other|One-person shop|Back-end Developer|Sales|Support|DevOps/SysAdmin|Dev Evangelist/Advocate|Supervisor/Team Lead,Always,1
0,6-25,1.0,No,No,No,No,No,Somewhat difficult,Yes,Maybe,No,No,I don't know,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,Maybe,"Because the “survival of the fittest"" mentality. No one wants to ihre someone with the probably highscore of sick days",No,Because as a techie your main tool is your brain. And i would fear that people would see my mental health issue as a maldunction and value my abilities less,"Yes, I think it would",Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Maybe,Yes,1,Sometimes,Sometimes,29.0,male,Germany,Germany,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,"It depends if it really matters. I suffer from heartburn which is crippling if I eat particular foods or drinks (mainly caffeine, poor me eh). But it's just my life and I'm used to it and it has no bearing on my work. If it did have an impact on my work in some way, or that employer could be more accommodating to help reduce the impact it would have then I'd of course discuss it. Not during interviewing though... who does that!",No,"It doesn't matter at that point in my opinion. Ultimately I feel, although third parties can greatly help you with mental health troubles, it is ultimately yourself and your perspective on things that has to change and thus it's a very personal battle.",Maybe,"No, I don't think they would",Very open,Maybe/Not sure,No,Yes,No,No,0,Rarely,Often,28.0,male,UK,UK,Back-end Developer|One-person shop,Always,1
0,26-100,1.0,I don't know,I am not sure,No,No,Yes,Somewhat easy,No,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Yes,"If it's going to affect my role, I should bring it up.",Maybe,"Now you've got me...! I think not previously knowing said interviewers would dissuade me, not knowing how it would affect my outcome, although I would know that I should be addressing it with them.",Maybe,"No, they do not",Somewhat open,No,No,Yes,Yes,No,1,Rarely,Sometimes,30.0,male,UK,UK,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,1.0,Yes,I am not sure,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,No,Feel it would go against mr,No,Would go against me,"Yes, it has",Maybe,Very open,No,No,Yes,No,Yes,1,Sometimes,Often,55.0,male,UK,UK,Front-end Developer,Always,1
0,6-25,0.0,I don't know,No,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,I am fortunate enough to not have a condition that requires accommodation. ,No,Not everybody understands mental health. Would worry about being perceived negatively. ,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Never,Sometimes,38.0,female,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,6-25,1.0,I don't know,I am not sure,No,I don't know,Yes,Somewhat easy,Yes,No,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,No,Too personal,"Yes, I think it would","Yes, I think they would",Somewhat open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,20.0,male,Canada,Canada,Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,1.0,No,Yes,No,I don't know,I don't know,Neither easy nor difficult,No,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,I dont have a problem discussing my personal limitations with anyone.,Yes,"I think it is generally important to bring it up, if I felt that the employer was open to hearing about it","No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,No,Yes,1,Rarely,Often,25.0,male,USA,USA,Support|Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Sometimes,22.0,male,other,other,One-person shop,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Embarrasment,Maybe,"Feeling vulnerable, not wanting to let them down",Maybe,Maybe,Very open,No,No,Yes,Yes,Yes,1,Sometimes,Often,35.0,male,UK,UK,One-person shop|Designer|Front-end Developer|Back-end Developer|Support,Sometimes,1
0,26-100,0.0,I don't know,No,No,No,I don't know,Very difficult,Maybe,No,No,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"If it was a personal matter, I'd try not to let it effect my work",No,Embarrassing / personal issue,Maybe,"No, I don't think they would",Neutral,No,I don't know,No,Yes,Yes,1,Never,Rarely,27.0,male,USA,USA,Designer|Front-end Developer|Back-end Developer|DevOps/SysAdmin,Never,1
0,6-25,0.0,No,No,No,No,I don't know,Somewhat easy,Maybe,Maybe,No,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat not open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Not applicable to me,Often,24.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer|Designer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,Maybe,"Depends on whether I thought it would impact job performance, and whether I would expect allowances to be made for my health issue.",Maybe,"Again, depends on whether I thought it would impact performance, and would require accommodation.","No, it has not","No, they do not",Very open,No,No,Yes,Yes,Yes,1,Sometimes,Sometimes,39.0,male,Australia,Australia,One-person shop|Front-end Developer|Back-end Developer|Sales|Support|DevOps/SysAdmin,Always,1
0,26-100,0.0,I don't know,I am not sure,No,No,I don't know,Neither easy nor difficult,No,No,No,No,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,It's more likely that I wouldn't think it would be relevant.,No,"I don't feel comfortable talking about mental health issues at all, even less with a stranger interviewing me.","No, I don't think it would","No, I don't think they would",Not open at all,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,29.0,male,other,other,Back-end Developer|Front-end Developer,Never,1
0,26-100,1.0,No,I am not sure,No,No,I don't know,Somewhat easy,Yes,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,None did,"Yes, they all did","Yes, always","Yes, all of them",None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,My potential employment should not be contingent on anything the ADA covers.,No,"It would be a weird thing to volunteer in an interview. I wouldn't want a candidate to tell me about any issue, because it puts me in a bad spot if I decline to offer them a job.","Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,40.0,female,USA,USA,Supervisor/Team Lead|Back-end Developer,Never,1
0,1-5,1.0,No,No,No,No,No,Somewhat difficult,Maybe,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,It's not pertinent to the position.,No,It's not pertinent to the position..,Maybe,"Yes, I think they would",Not open at all,Maybe/Not sure,Yes,Maybe,Maybe,Yes,1,Sometimes,Often,30.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer|Designer,Always,1
0,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Yes,Yes,No,No,1,Some did,"Yes, I was aware of all of them","Yes, they all did","Yes, they all did","Yes, always",None of them,None of them,"No, at none of my previous employers","No, at none of my previous employers","Yes, they all did",Some of them,No,"Not their business unless it would impact how I do my job in a way that they're allowed to care about
",No,"I don't know them, and they don't know me","Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,Canada,Canada,DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Sometimes,34.0,male,Germany,Germany,DevOps/SysAdmin|Back-end Developer|One-person shop,Sometimes,1
0,6-25,1.0,Yes,I am not sure,I don't know,I don't know,Yes,Very easy,No,No,Maybe,Maybe,Yes,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,I want to make sure both parties can make an informed decision - leaving something important unsaid would foster frustrated expectations.,Yes,I want to make sure both parties can make an informed decision - leaving something important unsaid would foster frustrated expectations,Maybe,"No, they do not",Neutral,Maybe/Not sure,No,Yes,Yes,Yes,1,Rarely,Often,35.0,female,Canada,Canada,Other|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,"Negative Feedback, Termination, Ridicule,",No,Reduce chance for employment,"Yes, it has",Maybe,Somewhat open,"Yes, I observed",Yes,Maybe,Maybe,No,0,Not applicable to me,Sometimes,30.0,male,USA,USA,DevOps/SysAdmin|Support|Sales|One-person shop|Designer|Front-end Developer|Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,I don't know,Maybe,No,Maybe,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,I would only bring it up if the issue would affect my job. Or only if it might affect my job within 3-6 months.,No,With the best will in the world an employer will not see it as a positive even if it's not direct discrimination.,Maybe,Maybe,Neutral,Maybe/Not sure,Yes,Maybe,No,No,1,Not applicable to me,Not applicable to me,36.0,male,UK,UK,Back-end Developer,Never,1
0,26-100,1.0,I don't know,No,I don't know,No,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,Yes,No,1,I don't know,I was aware of some,None did,None did,I don't know,None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers","Yes, they all did",None of them,Yes,To be up front about any factors that may affect my work performance. ,Maybe,"To be honest and up front about things that may affect my work performance, unless I was too embarrassed to talk about it. ",Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,other,other,Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,500-1000,0.0,I don't know,I am not sure,Yes,I don't know,I don't know,Somewhat easy,Maybe,No,Yes,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,I don't know,Some did,Some of them,No,"If it was likely to affect my chances of being employed, no. My issue only occasionally impacts my ability to work",Maybe,"Again, it depends on if it would strongly affect my ability to work","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Maybe,No,Yes,1,Sometimes,Sometimes,31.0,female,Netherlands,Netherlands,Other,Never,0
0,26-100,0.0,Not eligible for coverage / N/A,No,Yes,Yes,Yes,Very easy,No,No,No,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,None did,None of them,Yes,It is important for everyone to be informed of the situation.,Maybe,This is quiet personal,Maybe,Maybe,Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,other,other,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,30.0,male,UK,UK,Executive Leadership,Sometimes,0
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,Maybe,Maybe,No,No,No,No,1,I don't know,I was aware of some,Some did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat not open,"Yes, I experienced",No,Yes,Yes,Yes,1,Never,Sometimes,46.0,male,UK,UK,Other,Always,0
0,100-500,1.0,No,No,No,Yes,I don't know,Neither easy nor difficult,Maybe,No,Yes,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,Yes,Yes,No,Yes,1,Rarely,Sometimes,32.0,male,USA,USA,Dev Evangelist/Advocate,Sometimes,1
0,100-500,1.0,Yes,I am not sure,I don't know,Yes,I don't know,Very easy,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,No,"I would never bring up health issues, because it may be perceived as a negative for reliability of employee.",No,"Same as above, and there are additional implications about mental health and overall group dynamics.","Yes, I think it would",Maybe,Neutral,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,USA,USA,Back-end Developer,Sometimes,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,No,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,Fear of discrimination,Maybe,never have done it before,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,41.0,male,USA,USA,DevOps/SysAdmin,Always,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,"Yes, they all did","Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,If it was important to my health or well being I could like them to know,Maybe,Stigma,Maybe,Maybe,Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,USA,USA,Back-end Developer,Always,1
0,>1000,0.0,Yes,No,I don't know,Yes,I don't know,Somewhat difficult,Maybe,Maybe,No,No,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,"Yes, they all did",I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,Some of them,No,I assume that it would weigh against me getting the job,No,I assume it would weigh against me getting the job,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,No,Yes,1,Sometimes,Sometimes,47.0,male,USA,USA,Executive Leadership,Sometimes,0
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Very easy,No,No,No,No,Yes,No,1,I don't know,N/A (not currently aware),Some did,Some did,No,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,USA,USA,DevOps/SysAdmin,Always,1
0,100-500,0.0,Yes,I am not sure,Yes,I don't know,I don't know,I don't know,Maybe,No,Yes,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Maybe if it related to my work,Maybe,"There's a stigma, so I'd probably leave it out if I could.",Maybe,"Yes, I think they would",Somewhat open,No,I don't know,No,No,Yes,1,Never,Rarely,36.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,100-500,1.0,No,Yes,No,No,I don't know,Somewhat difficult,Yes,No,Maybe,No,No,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Biases exist ,No,Stigma,"Yes, it has","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,32.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Neither easy nor difficult,No,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"If it impacted or could impact my ability to do my job, they should have the right to know about it.",No,I wouldn't think it relevant to the interview.,Maybe,Maybe,Somewhat open,No,Yes,Maybe,Maybe,No,1,Not applicable to me,Rarely,29.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,1-5,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,I feel this would negatively reflect on your potential.,No,"This again would negatively reflect on your potential, especially more so that a physical problem.","Yes, I think it would","No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,22.0,male,UK,UK,Back-end Developer|DevOps/SysAdmin|Dev Evangelist/Advocate|Supervisor/Team Lead,Never,1
0,>1000,1.0,Yes,Yes,No,No,Yes,Very easy,Yes,No,No,No,No,Yes,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,None did,"Yes, all of them",No,"No, I don't want them to feel like I would be a burden.",No,No because I don't want them to think I can't perform my job or that they can't count on me in crunch time.,"Yes, it has","Yes, I think they would",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Often,Often,32.0,female,USA,USA,Back-end Developer,Sometimes,1
0,>1000,0.0,Yes,I am not sure,No,No,I don't know,Neither easy nor difficult,No,Maybe,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,Some of them,"No, at none of my previous employers",I don't know,I don't know,None of them,No,I would not bring up a physical health issue in an interview because I believe it would hinder my possibility of getting the job.,Maybe,"I would not bring up a mental health issue, but if they brought it up, I would talk about it.","Yes, I think it would",Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,19.0,female,USA,USA,Front-end Developer,Never,1
0,6-25,1.0,No,No,No,No,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,"Yes, always",None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Yes,It should never be a criteria for hiring me.,Yes,Same reason as a physical health issue.,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,other,other,Designer|Front-end Developer|Back-end Developer|Supervisor/Team Lead,Sometimes,1
0,6-25,1.0,I don't know,I am not sure,No,I don't know,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"Physical health issues that impact my job are necessary for them to know for them to make an informed decision. This would probably change to ""no"" if I NEEDED the job as opposed to just wanted the job.",Yes,"Mental health issues that impact my job are necessary for them to know for them to make an informed decision. This would probably change to ""no"" if I NEEDED the job as opposed to just wanted the job.","No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,Maybe,Yes,1,Not applicable to me,Not applicable to me,32.0,other,USA,USA,Other|Back-end Developer,Always,1
0,>1000,1.0,I don't know,I am not sure,I don't know,I don't know,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,No,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"Only if it would directly affect my work, otherwise it's not their business.",Maybe,"Only if it would directly affect my work, otherwise it's not their business.","No, I don't think it would",Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,22.0,male,USA,USA,Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,not his concern,No,if he does his work correctly why should i,"No, I don't think it would","No, they do not",Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,other,other,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Front-end Developer,Always,1
0,100-500,1.0,Yes,No,I don't know,I don't know,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Yes,It may affect time I need to take off or my ability to do certain tasks.,Maybe,It hasn't come up for me.,Maybe,"No, I don't think they would",Neutral,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,55.5,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,xxx,No,xxx,"Yes, I think it would","No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,other,other,Back-end Developer,Sometimes,1
0,6-25,1.0,No,I am not sure,No,No,I don't know,Very difficult,Yes,Maybe,No,Maybe,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,They may not employ me,No,They won't employ me,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,No,Yes,No,Yes,1,Never,Sometimes,48.0,female,UK,UK,Front-end Developer,Never,1
0,>1000,1.0,No,No,No,No,I don't know,Somewhat difficult,Maybe,Maybe,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,None did,None of them,Maybe,"If I wouldn't mention it, it could cause trouble afterward.",Maybe,Same reason. Could cause trouble to keep silent.,Maybe,Maybe,Somewhat not open,No,No,Maybe,No,No,1,Not applicable to me,Not applicable to me,45.0,male,Germany,Germany,Other,Never,0
0,26-100,1.0,I don't know,I am not sure,Yes,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,Yes,No,Yes,1,Never,Often,28.0,male,UK,UK,Back-end Developer,Sometimes,1
0,100-500,1.0,I don't know,No,I don't know,I don't know,I don't know,Somewhat difficult,No,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,I would if it required adaptations on the part of the employer for me to be able to take the job.,No,Even though it's unjustified there is a stigma attached to mental health issues that is just not there for physical limitations.,Maybe,"No, I don't think they would",Somewhat not open,Maybe/Not sure,Yes,Maybe,No,No,1,Not applicable to me,Often,44.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,Somewhat difficult,Maybe,No,No,No,No,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,I'm afraid it would impact my ability to get a job.,No,I doubt they'd hire me.,"Yes, I think it would","No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,USA,USA,Supervisor/Team Lead|Front-end Developer|Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,I am not sure,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,No,I don't know,Yes,Yes,Yes,1,Rarely,Often,31.0,female,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,No,Yes,I don't know,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Maybe,It depends on what the issue was. If the issue required a significant amount of time off I would worry about how it would impact my chances of getting the job.,Maybe,Depends on the issue.,"No, I don't think it would","No, I don't think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,USA,USA,DevOps/SysAdmin,Never,1
0,>1000,0.0,Yes,Yes,No,I don't know,I don't know,I don't know,Maybe,Maybe,No,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"Diabetes is a prominent part of my life - it impacts my ability to work in multiple ways, as well as when I get in and when I may have to leave. If my blood sugar is low in the mornings, I have no say in the matter - I need to treat it before I can drive into an office.",Maybe,"I would want to know the stance of the potential employer towards mental health issues. There is still a stigma surrounding mental health issues, and while it needs to dissipate, I would want to know the context in which I would bring it up and more details around the scenario.","No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,USA,USA,Front-end Developer|Back-end Developer|Support|Dev Evangelist/Advocate,Never,1
0,100-500,0.0,Yes,Yes,Yes,I don't know,I don't know,Neither easy nor difficult,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,i've had previous employers that responded negatively to that,No,you never know who is interviewing you,Maybe,"No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,35.0,female,USA,USA,Front-end Developer|Designer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),"Yes, they all did","Yes, they all did","Yes, always",I don't know,None of them,Some of my previous employers,Some of my previous employers,"Yes, they all did",None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Maybe,No,No,1,Not applicable to me,Not applicable to me,44.0,male,other,other,Back-end Developer|One-person shop,Sometimes,1
0,6-25,1.0,Yes,No,No,I don't know,I don't know,I don't know,Yes,No,No,No,No,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",I don't know,None of them,"No, at none of my previous employers",I don't know,Some did,Some of them,Maybe,"depends if the physical issue was considered a ""common"" issue; for example an amputation. But perhaps not if it was a ""heart disorder"" ... or something not visible to others.",No,"There is too much of a negative stigma associated with ""not being able to handle the stress"" of work. Especially if you are in a startup.",Maybe,"Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,45.0,male,USA,USA,Dev Evangelist/Advocate,Always,1
0,6-25,0.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat easy,No,No,No,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,It really depends.,Maybe,Depends.,Maybe,"Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,22.0,female,USA,USA,Executive Leadership|Supervisor/Team Lead|HR|DevOps/SysAdmin|Support|Sales|Back-end Developer|One-person shop|Designer|Front-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,No,I don't know,I don't know,No,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,"I'm a private person in general, I may not bring it up.",Maybe,"I'm a private person in general, I may not bring it up.","Yes, it has",Maybe,Somewhat open,"Yes, I experienced",I don't know,Maybe,Maybe,No,0,Rarely,Often,34.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,Yes,No,1,Some did,"No, I only became aware later",Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Maybe,It would depend on the nature and severity/impairment,Maybe,I am a gifted adult and most employers aren't familiar with my differences. People with high IQ can appear intimidating or aloof; mental health issues might be the nail in the coffin,Maybe,"Yes, I think they would",Somewhat open,"Yes, I experienced",I don't know,Maybe,Maybe,No,0,Not applicable to me,Rarely,35.0,male,UK,UK,Supervisor/Team Lead|Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always","Yes, all of them",None of them,Some of my previous employers,I don't know,Some did,Some of them,No,Because I would want the job.,No,Because I want the job.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,39.0,male,USA,USA,Other,Sometimes,0
0,6-25,1.0,Not eligible for coverage / N/A,Yes,No,No,No,Somewhat difficult,Yes,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),I don't know,None did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Potential negative consequences down the road.,No,Potential negative impact on job.,"Yes, I think it would","Yes, I think they would",Very open,No,Yes,Yes,Maybe,Yes,1,Not applicable to me,Not applicable to me,26.0,male,other,other,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,I don't know,None did,I don't know,I don't know,None of them,Some of my previous employers,I don't know,I don't know,None of them,Maybe,If I was not really interested in the job. I would wait until I knew that I was really interested before getting that personal.,Maybe,Same as above,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,41.0,male,USA,USA,Executive Leadership,Sometimes,0
0,>1000,1.0,Not eligible for coverage / N/A,I am not sure,I don't know,I don't know,I don't know,Somewhat difficult,Yes,No,Maybe,Maybe,I don't know,Yes,1,"No, none did","Yes, I was aware of all of them","Yes, they all did",Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,No,"Strongly advised by mentors not to discuss it; issues with anxiety are often perceived as a weakness/hindrance/liability, even if the interviewer is considerate of mental health issues this can introduce a negative bias.",Maybe,Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,24.0,male,Australia,Australia,Back-end Developer|Front-end Developer|Designer,Sometimes,1
0,6-25,1.0,I don't know,No,No,I don't know,Yes,Somewhat easy,No,No,Maybe,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,Some of them,Yes,I would be uncomfortable working for anyone with whom I couldn't discuss physical health. ,Maybe,"Having occasional depression myself, I'm well-versed in the potential negative (work-related) effects (e.g. trouble focusing, potential for oversleeping, etc.). If I knew the employer was looking for an employee upon whom a lot of responsibilities would be entrusted, I would probably not discuss my depression.",Maybe,"No, I don't think they would",Neutral,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,24.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Front-end Developer,Never,1
0,26-100,1.0,Yes,Yes,No,No,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Yes,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,No,No,Yes,Yes,Yes,1,Sometimes,Sometimes,34.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,No,No,No,No,I don't know,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,It depends on how relevant it would be to my work performance.,Maybe,Depends on likely impact on work performance.,Maybe,Maybe,Very open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,36.0,male,Australia,Australia,Supervisor/Team Lead,Sometimes,0
0,500-1000,0.0,Yes,Yes,I don't know,I don't know,I don't know,Somewhat difficult,Yes,Maybe,No,No,I don't know,Yes,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,"Yes, all of them",Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,41.0,male,Australia,Australia,Supervisor/Team Lead,Sometimes,0
0,>1000,1.0,Not eligible for coverage / N/A,I am not sure,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,If it would require accommodations at work.,No,Adds nothing of value to the interview,Maybe,"No, I don't think they would",Somewhat open,"Yes, I observed",No,Yes,Yes,Yes,1,Sometimes,Often,21.0,male,USA,USA,DevOps/SysAdmin,Never,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,No,Somewhat easy,Maybe,No,Maybe,Maybe,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,maybe they will go for recruiting a healthy person ,Maybe,"to give them option to choose or reject me, as a whole ",Maybe,Maybe,Somewhat open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Rarely,Often,33.0,male,other,other,Back-end Developer,Sometimes,1
0,>1000,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,I don't know,"Yes, all of them","Yes, at all of my previous employers",Some of my previous employers,None did,None of them,Yes,I am stressed clinically diagnosed. So i should discuss that.,Yes,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,Yes,No,No,No,1,Rarely,Often,32.0,male,other,other,Front-end Developer|Back-end Developer|Support|DevOps/SysAdmin|Dev Evangelist/Advocate,Always,1
0,>1000,0.0,Yes,Yes,No,Yes,Yes,Neither easy nor difficult,No,No,Yes,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,I have MS and there are some stigmas with MS. Some people with MS have cognitive issues.,No,My mental health is currently well controlled so no one would know if I didn't tell them.,"No, I don't think it would","No, I don't think they would",Very open,No,I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,55.5,female,USA,USA,Back-end Developer|One-person shop,Never,1
0,26-100,0.0,Yes,Yes,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,37.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,Because there's nothing to be ashamed of.,Yes,It's good to know about potential hurdles ahead of time.,Maybe,"No, I don't think they would",Somewhat open,No,I don't know,No,Maybe,No,0,Never,Never,32.0,male,USA,USA,Support|Back-end Developer,Always,1
0,>1000,1.0,Yes,Yes,I don't know,I don't know,I don't know,Very difficult,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Afraid it would affect outcome,No,Afraid it would affect outcome,Maybe,Maybe,Neutral,No,No,No,No,No,1,Rarely,Sometimes,31.0,male,USA,USA,Supervisor/Team Lead|Executive Leadership,Sometimes,0
0,6-25,1.0,I don't know,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,Maybe,Maybe,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Depends on the physical issue and how impacting it is to my ability to work.,No,"Depends on how much social stigma it has. Saying you have ADD is easier thsn, say, depression","Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Maybe,Yes,1,Rarely,Rarely,28.0,male,USA,USA,Front-end Developer|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,48.0,female,USA,USA,One-person shop|Front-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,I don't know,None of them,No,it may prevent me from getting the job,No,I believe it would prevent me from getting the job,"Yes, I think it would",Maybe,Neutral,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Often,Often,40.0,male,other,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,No,I don't know,Yes,Very easy,No,No,Maybe,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,"It's a rather private manner, which one might not wish to share with everyone if they are in a position where you may not be a part of their team any way.
If an interview succeeds should in most cases not be based on any lingering mental state, and as such one would open up and become vulnerable in a negative way.","No, I don't think it would",Maybe,Somewhat not open,No,No,Yes,Yes,Yes,1,Sometimes,Sometimes,29.0,male,other,other,Other|Dev Evangelist/Advocate|DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer|One-person shop,Never,1
0,26-100,0.0,Yes,Yes,Yes,Yes,I don't know,I don't know,Maybe,Maybe,Yes,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Neutral,No,I don't know,No,No,No,1,Not applicable to me,Not applicable to me,33.0,male,Germany,Germany,Back-end Developer,Never,1
0,26-100,0.0,I don't know,I am not sure,Yes,No,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers","Yes, they all did",None of them,Maybe,"If it doesn't affect my performance while doing the job, then it kind of depends on the situation",Maybe,Stigma,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,other,other,Support|DevOps/SysAdmin,Sometimes,1
0,26-100,0.0,Not eligible for coverage / N/A,No,No,No,No,Very easy,No,No,Maybe,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Yes,Stigma,Maybe,"No, I don't think they would",Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,24.0,male,Australia,Australia,One-person shop,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,If and when it affects me in the workplace my employer can adjust my workplace.,Maybe,Depends on wether I feel comfortable enough during the interview or when they bring it up in a non-threatening way.,"Yes, I think it would",Maybe,Neutral,No,Yes,Maybe,Yes,Yes,1,Often,Often,28.0,male,Netherlands,Netherlands,One-person shop|Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
0,1-5,1.0,Yes,Yes,Yes,No,No,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,Important to bring them up so that all parties are aware. Hiding a Physical Health issue would never end well for either party. All conversation should be open and all cards on the table.,Yes,Important to bring them up so that all parties are aware. Hiding a Mental Health issue would never end well for either party. All conversation should be open and all cards on the table.,"No, it has not","No, they do not",Very open,No,Yes,Maybe,Maybe,No,1,Not applicable to me,Not applicable to me,42.0,male,USA,USA,Dev Evangelist/Advocate,Always,1
0,26-100,1.0,No,No,No,No,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,no need to do so,No,no need to do so,"Yes, I think it would","No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,UK,UK,Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
0,500-1000,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Maybe,Maybe,Maybe,Maybe,No,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"It would depend on the position (on-site vs remote) and even then on the ""vibe"" with the interviewer, if I felt a low risk of bringing up the topic.",Maybe,Same as above,Maybe,Maybe,Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,40.0,male,Canada,Canada,Dev Evangelist/Advocate|DevOps/SysAdmin|Back-end Developer,Always,1
0,>1000,1.0,Yes,I am not sure,No,Yes,I don't know,Very easy,Maybe,Maybe,No,No,I don't know,No,1,"Yes, they all did","No, I only became aware later",I don't know,None did,No,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,It would only hurt your chances of being hired. And if you don't get hired you'll wonder for the rest of your life if that affected it,No,Same thing,"Yes, it has","No, I don't think they would",Not open at all,No,Yes,Yes,Maybe,Yes,1,Rarely,Rarely,32.0,female,USA,USA,Dev Evangelist/Advocate,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,"Yes, all of them",Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Physical health issues are not typically seen as roadblocks to productivity and communication.,No,It would be seen as a roadblock to productivity and communication.,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,No,Maybe,Maybe,Yes,1,Never,Rarely,33.0,male,USA,USA,Front-end Developer|Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,No,Maybe,Maybe,Yes,1,Not applicable to me,Not applicable to me,40.0,male,USA,USA,One-person shop,Always,0
0,6-25,1.0,Yes,Yes,No,No,Yes,Very easy,Maybe,No,No,No,No,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"Any perceived issue could affect hirability, anti-discrimination policy or no. ",No,"Any perceived issue could affect hirability, anti-discrimination policy or no. ","Yes, I think it would",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,26.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Never,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,Maybe,Maybe,Yes,Maybe,I don't know,No,1,Some did,"No, I only became aware later",Some did,None did,No,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,"Yes, all of them",Maybe,The word 'cancer' terrifies everyone.,No,"If I feel it won't impact my job, I won't bring it up.",Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,39.0,female,USA,USA,Dev Evangelist/Advocate|Support|Back-end Developer|Front-end Developer,Sometimes,1
0,500-1000,0.0,Not eligible for coverage / N/A,No,Yes,Yes,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,38.0,male,UK,UK,DevOps/SysAdmin|Supervisor/Team Lead,Never,1
0,>1000,1.0,Yes,No,No,I don't know,I don't know,Very difficult,Yes,No,No,Maybe,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,Maybe,Yes,No,0,Sometimes,Often,34.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,0.0,I don't know,No,No,No,I don't know,Very difficult,Maybe,Maybe,Yes,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,"Yes, always",I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Fear of discrimination,Maybe,Stigma,"Yes, it has","No, I don't think they would",Very open,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Sometimes,Often,44.0,male,Netherlands,Netherlands,Back-end Developer|DevOps/SysAdmin,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),I don't know,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,I don't know,Some of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,Maybe,No,0,Not applicable to me,Often,54.0,male,UK,UK,One-person shop|Back-end Developer,Always,1
0,100-500,1.0,Yes,No,No,No,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,No,Some of them,"Yes, all of them","Yes, at all of my previous employers","No, at none of my previous employers",None did,None of them,Yes,I would discuss issue because health is what make your work process effective ,Yes,I will bring up because it is the main process of body,"No, I don't think it would","No, I don't think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,24.0,male,other,other,Other,Always,0
0,6-25,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Yes,If it impacted my ability to do my job or even if I was going to need to take time to visit a doctor or time to recover then I would need to coordinate with them.,Yes,"I am at the point in my life where my mental health needs to be part of the conversation. If a company cannot even start to have that conversation with me, then how can I possibly be confident that they will be able to support me when I need to address mental health issues that come up.","No, it has not","No, they do not",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,male,USA,USA,Front-end Developer,Sometimes,1
0,>1000,1.0,Yes,Yes,I don't know,I don't know,No,Somewhat difficult,Yes,No,Maybe,Yes,No,No,1,Some did,I was aware of some,None did,Some did,No,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,"Yes, all of them",Maybe,I don't want to screw my chances at the job.,No,I *definitely* would be afraid I'd be d/q'd from the job for mentioning this.,"Yes, it has",Maybe,Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,47.0,male,USA,USA,Other,Sometimes,0
0,>1000,1.0,Not eligible for coverage / N/A,No,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did",Sometimes,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",Yes,Fear of discrimination,Yes,Stigma,Maybe,Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Often,30.0,male,Australia,Australia,Support,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers",I don't know,I don't know,Some of them,Maybe,Because I think it would hurt your chances of being hired. Although it depends on the physical issue.,No,Same reason as physical. ,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I observed",I don't know,Maybe,No,No,0,Not applicable to me,Not applicable to me,34.0,male,USA,USA,One-person shop|Back-end Developer|Sales|Support|Supervisor/Team Lead|Executive Leadership,Always,1
0,6-25,1.0,Yes,I am not sure,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,I don't know,No,1,Some did,I was aware of some,I don't know,Some did,I don't know,I don't know,None of them,Some of my previous employers,I don't know,I don't know,None of them,No,"We're interviewing for skills, not personal issues.",No,"Everyone's got shit to deal with. I'm there to interview technically and figure out if it'd be a good fit. I'll ask questions and see what their stance is.
I wouldn't tell someone one a first date that I'm depressed or have bad knees, plenty of other more positive and more interesting topics to talk about.","No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Often,Often,29.0,other,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,I am not sure,No,I don't know,I don't know,Very difficult,Maybe,No,Maybe,Yes,No,No,1,Some did,"No, I only became aware later",Some did,Some did,I don't know,None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers",Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,USA,USA,Front-end Developer|Back-end Developer|Support,Sometimes,1
0,>1000,0.0,Yes,No,Yes,Yes,Yes,Neither easy nor difficult,No,No,No,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"If the physical health issue has no impact on my ability to do my job, from my perspective, I see no reason to discuss it. For instance, if I have a hemorrhoid, I can still do my job and my company does not need to know.
If I have no arms because of a mechanical accident, then I may have some difficulty with a job that requires the use of hands, and I would probably tell my employer during my interview that I have no hands.",No,I would feel immediately stigmatized and that my candidacy would be dismissed.,"Yes, I think it would",Maybe,Somewhat open,No,No,Yes,Yes,Yes,1,Sometimes,Often,29.0,male,USA,USA,DevOps/SysAdmin|Support,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,"Yes, always",Some of them,Some of them,Some of my previous employers,I don't know,Some did,None of them,Maybe,Worried about negative perceptions ,No,Nonstarter,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,43.0,female,USA,USA,One-person shop,Sometimes,0
0,100-500,1.0,Yes,I am not sure,No,No,Yes,Somewhat difficult,Maybe,No,Maybe,No,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,Physical health is socially considered more legitimate,No,Fear of stigma and being considered incompetent ,Maybe,Maybe,Neutral,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,31.0,other,USA,USA,Designer,Sometimes,0
0,6-25,0.0,I don't know,I am not sure,No,No,I don't know,I don't know,Yes,Maybe,No,No,No,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",No,No,Maybe,No,0,Not applicable to me,Sometimes,27.0,male,other,other,Back-end Developer|Front-end Developer,Never,1
0,6-25,1.0,No,No,No,No,No,Somewhat difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"Yes, they do",Somewhat open,"Yes, I experienced",No,Yes,Yes,Yes,1,Rarely,Often,29.0,male,UK,UK,DevOps/SysAdmin,Never,1
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Somewhat easy,No,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,I would assume I was legally protected from issues arising from discussing it.,No,Would be worried about negative stereotypes/affecting the interviewers decision.,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,UK,UK,Back-end Developer,Never,1
0,>1000,1.0,Yes,I am not sure,No,Yes,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,if it did not affect my job performance i would not discuss it,No,i would be afraid of bias in their decision making,Maybe,Maybe,Somewhat not open,Maybe/Not sure,I don't know,Maybe,Yes,Yes,0,Not applicable to me,Rarely,42.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,6-25,1.0,Yes,I am not sure,No,No,I don't know,Somewhat difficult,Maybe,No,No,Maybe,I don't know,No,1,I don't know,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,"It would probably depend on the specific physical health issue, but I would worry about it affecting my chances to land that job, especially if I would need special treatment / time off of work / etc.",No,"I would definitely think it would affect my chances of getting that job. I feel like there is a good chance it would not be viewed as ""professional"" to bring it up -- I have been penalized in interviews for bringing up semi-personal information before (was going through the end of a 5+ year relationship and in the process of moving. Disclosed that to a potential employer, found out from the recruiter that it was not viewed as ""professional."")","Yes, I think it would",Maybe,Somewhat open,No,Yes,Yes,No,No,0,Not applicable to me,Sometimes,26.0,female,USA,USA,Front-end Developer|Back-end Developer,Always,1
0,6-25,1.0,I don't know,I am not sure,Yes,Yes,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,No,Yes,1,Rarely,Often,26.0,male,other,other,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",None of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,Yes,Physical health problems do not carry the same stigma. Mental health problems are considered a weakness.,No,"There's not enough knowledge out there. A physical health problem seems like a fixed risk that can be accommodated. Mental health I'd invisible, therefor an unknown risk.","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,34.0,male,UK,UK,Front-end Developer,Sometimes,1
0,100-500,0.0,Yes,Yes,Yes,No,Yes,Somewhat difficult,Maybe,Maybe,No,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",I don't know,None did,"Yes, all of them",Yes,Fear of discrimination,No,Stigma,Maybe,"Yes, I think they would",Somewhat open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,24.0,male,USA,USA,Other,Sometimes,0
0,>1000,0.0,Yes,No,Yes,Yes,Yes,Somewhat difficult,Yes,Maybe,No,No,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"It would depend on whether it was relevant to the job, if it would effect it negatively. ",Maybe,It would depend on whether the issue was relevant to the work being performed and if it will negatively effect it.,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,25.0,male,USA,USA,Other,Never,0
0,6-25,1.0,Yes,Yes,No,No,I don't know,Very easy,No,No,Maybe,Yes,Yes,No,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did",I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,It's relevant ,Maybe,It depends on the type and severity of the issue,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,22.0,male,USA,USA,Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,I am not sure,No,I don't know,Yes,Neither easy nor difficult,Maybe,No,Maybe,Maybe,No,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,less stigma,Maybe,more stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,33.0,male,USA,USA,DevOps/SysAdmin|Support|Back-end Developer,Sometimes,1
0,26-100,1.0,Yes,No,No,Yes,I don't know,Very easy,No,No,Maybe,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,"Yes, they all did","Yes, always",None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers","Yes, they all did",None of them,Yes,I have an issue and always bring it up,Yes,I never surprise my boss,"Yes, I think it would","No, I don't think they would",Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,53.0,male,USA,USA,Executive Leadership,Always,0
0,26-100,1.0,Yes,Yes,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,No,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,I don't know,Some of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,No,Afraid of prejudice ,Maybe,"Afraid of prejudice, but feel the need to be honest if it limits my abilities.","Yes, I think it would","No, I don't think they would",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,32.0,male,Canada,Canada,Back-end Developer,Never,1
0,6-25,1.0,No,No,No,No,I don't know,Neither easy nor difficult,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Very open,"Yes, I observed",No,Yes,No,Yes,1,Sometimes,Not applicable to me,32.0,male,USA,USA,Executive Leadership,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,It might impact me negatively.,No,It might impact me negatively.,"Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I observed",No,No,Maybe,No,0,Sometimes,Sometimes,55.0,male,USA,USA,Back-end Developer|One-person shop,Sometimes,1
0,6-25,1.0,I don't know,No,No,No,Yes,Somewhat difficult,Maybe,No,Maybe,No,I don't know,No,1,I don't know,I was aware of some,None did,None did,"Yes, always",I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Yes,honesty,Yes,honesty,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,No,No,No,No,1,Not applicable to me,Not applicable to me,27.0,male,other,other,Back-end Developer|DevOps/SysAdmin,Never,1
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Somewhat easy,Maybe,Maybe,Maybe,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Yes,It's often easier to talk about. Less stigma associated with it.,No,Stigma,Maybe,Maybe,Somewhat not open,Maybe/Not sure,I don't know,Maybe,No,No,0,Sometimes,Sometimes,34.0,male,UK,UK,Back-end Developer|Supervisor/Team Lead,Always,1
0,6-25,1.0,No,No,No,No,Yes,Somewhat difficult,Maybe,Maybe,Yes,Maybe,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,None did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Never,Sometimes,26.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,26-100,1.0,I don't know,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,"It's none of their business unless I need an accommodation, which for the work I do, I generally don't ",No,"People have so much stigma and I don't want to find out what kind, I want to get hired","Yes, I think it would","Yes, they do",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,25.0,male,USA,USA,Other,Never,0
0,>1000,1.0,Yes,Yes,Yes,Yes,I don't know,Somewhat difficult,Maybe,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"No, it has not","No, I don't think they would",Somewhat open,No,Yes,Yes,Maybe,Yes,1,Never,Sometimes,39.0,male,UK,UK,Front-end Developer|Back-end Developer|Supervisor/Team Lead,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,Yes,I don't know,I don't know,Somewhat easy,No,No,No,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","No, I don't think they would",Somewhat open,No,No,Maybe,Maybe,No,1,Not applicable to me,Often,32.0,male,USA,USA,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,"Yes, I experienced",No,Yes,Maybe,Yes,1,Sometimes,Sometimes,46.0,male,UK,UK,Designer|Front-end Developer|Back-end Developer|Support|DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did","Yes, always",I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,52.0,female,USA,USA,One-person shop,Sometimes,0
0,500-1000,1.0,I don't know,No,Yes,Yes,I don't know,I don't know,Yes,Maybe,No,Maybe,No,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Not applicable to me,Often,33.0,other,UK,UK,Other|Supervisor/Team Lead|Dev Evangelist/Advocate|DevOps/SysAdmin|Support|Back-end Developer,Never,1
0,26-100,1.0,Yes,No,I don't know,I don't know,I don't know,I don't know,Maybe,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,I don't know,Some did,"Yes, always",I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,"Yes, all of them",Maybe,"Only if an accommodation were needed as condition of employment, or I needed the answer in deciding whether to accept employment",No,Not if I wanted to get hired!,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,55.5,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,No,No,Yes,Very difficult,Yes,Yes,No,No,No,No,1,"No, none did","No, I only became aware later",I don't know,None did,"Yes, always","Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",No,because it would kill my job chances,No,because it would kill my chances at the job,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,No,No,Yes,Yes,1,Rarely,Often,30.0,male,Canada,Canada,Front-end Developer|Designer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,Might have. Bad impact on how they view my performance ,No,Same,"Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,46.0,male,other,other,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,0.0,I don't know,No,I don't know,I don't know,I don't know,I don't know,Maybe,No,No,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,No,I wouldn't want any mental health issues to affect hiring decisions with respect to me.,No,"Again, I wouldn't want mental health issues to affect hiring decisions with respect to me.",Maybe,"No, I don't think they would",Somewhat not open,Maybe/Not sure,Yes,Yes,Yes,Yes,0,Not applicable to me,Sometimes,45.0,male,USA,USA,Front-end Developer,Sometimes,1
0,1-5,1.0,No,No,No,No,No,Very difficult,Yes,Yes,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,Yes,Yes,No,Yes,1,Not applicable to me,Not applicable to me,26.0,female,Canada,Canada,Front-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,Yes,Yes,I don't know,Yes,No,No,No,No,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,None of them,Yes,Employers seem to be more willing to deal with workplace assistance for physical ailments.,No,I feel like mental health issues (at least in my state of Pennsylvania) have little or poorly administered protection in the workplace.,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,Yes,Maybe,Yes,Yes,1,Rarely,Often,22.0,male,USA,USA,DevOps/SysAdmin|Support,Never,1
0,6-25,1.0,I don't know,I am not sure,No,I don't know,No,Somewhat easy,Yes,No,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,I would only bring it up if relevent.,Yes,These would be more likely to directly effect my work I think,Maybe,"No, I don't think they would",Very open,No,Yes,Maybe,No,No,0,Not applicable to me,Sometimes,21.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,I am not sure,Yes,Yes,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,Legislation in my jurisdiction mandates certain protections for employees who need concessions due to health.,No,"Despite the legal protections, mental health in my area still suffers a significant amount stigma.",Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Rarely,Sometimes,11.5,male,Canada,Canada,Back-end Developer,Sometimes,1
0,500-1000,0.0,I don't know,No,Yes,Yes,Yes,I don't know,No,Maybe,No,Yes,Yes,No,1,"No, none did",I was aware of some,None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,"As a matter of privacy, I would not.",No,As a matter of privacy.,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead,Sometimes,0
0,26-100,1.0,I don't know,No,Yes,I don't know,I don't know,Very easy,No,No,Maybe,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,"Yes, they all did",I don't know,Some of them,Some of them,"Yes, at all of my previous employers",Some of my previous employers,Some did,Some of them,No,I don't want to add any cause for bias until the hiring has been decided one way or another.,No,I don't want to add any cause for bias until the hiring has been decided one way or another.,Maybe,"No, I don't think they would",Somewhat not open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,25.0,female,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,I am not sure,No,No,Yes,Very easy,No,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,Fear of discrimination,No,Stigma,"Yes, it has",Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Often,Often,27.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead|Sales,Sometimes,0
0,26-100,1.0,Yes,I am not sure,No,No,I don't know,Neither easy nor difficult,Yes,No,No,No,No,Yes,1,Some did,"No, I only became aware later",None did,None did,No,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Sometimes,25.0,female,USA,USA,Back-end Developer,Never,1
0,500-1000,1.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,No,No,Yes,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),Some did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"Depends on the issue, how it affected my work or responsibilities.",Yes,I have done before. I have no issue talking about it.,"No, it has not","No, they do not",Somewhat open,No,I don't know,Maybe,Maybe,Yes,1,Never,Never,33.0,male,UK,UK,Other|Front-end Developer|Designer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,"My mental health issues are well-managed. I'm open about them with people I trust, and happy to discuss them overall. But, it hasn't been relevant to bring up in the workplace. ",No,Stigma,"Yes, I think it would",Maybe,Very open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Never,Often,26.0,female,Canada,Canada,Front-end Developer,Always,1
0,6-25,1.0,No,I am not sure,No,No,I don't know,Somewhat easy,Maybe,Maybe,Yes,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,It may unconsciously affect their decision.,No,It may unconsciously affect their decision.,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,36.0,female,USA,USA,Other,Always,0
0,6-25,1.0,No,No,I don't know,I don't know,I don't know,Neither easy nor difficult,Yes,Maybe,No,No,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Getting the job would be more important in the short term.,No,Getting the job would be more important in the short term#,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Maybe,Maybe,No,1,Rarely,Rarely,26.0,male,UK,UK,Back-end Developer,Never,1
0,6-25,1.0,Not eligible for coverage / N/A,I am not sure,No,No,I don't know,Neither easy nor difficult,No,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,Yes,I would want a potential employer to understand the extent of my physical abilities and limitations up front to prevent misunderstandings down the road.,Yes,Same as physical: I would want a potential employer to understand the manifestations of my mental health issues up front to prevent misunderstandings.,"No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Sometimes,34.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Never,1
0,26-100,1.0,Yes,Yes,No,No,Yes,Somewhat difficult,Yes,No,Maybe,Maybe,No,Yes,1,"Yes, they all did",I was aware of some,Some did,None did,No,"Yes, all of them",None of them,Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",No,Not relevant to hiring process,No,Because you wouldn't get hired or were docked in pay,"Yes, it has","Yes, they do",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,34.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,0.0,Yes,Yes,No,Yes,Yes,Neither easy nor difficult,Maybe,No,Maybe,No,No,No,1,Some did,I was aware of some,I don't know,Some did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Wouldn't want to jeopardize my chances at the position,No,Wouldn't want to jeopardize my chances. ,"No, I don't think it would","No, they do not",Very open,No,I don't know,Maybe,Yes,Yes,1,Rarely,Often,25.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,"Depends on if it would affect my job, and even then I wouldn't necessarily bring it up in case it made them not hire me. Like a pregnancy for example.",No,They don't know me well enough to understand the full context behind any issues. ,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Maybe,Maybe,No,1,Rarely,Sometimes,33.0,female,USA,USA,One-person shop|Designer|Front-end Developer|Supervisor/Team Lead,Sometimes,1
0,26-100,1.0,No,Yes,No,No,No,Very difficult,Maybe,No,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,don't want it to effect willingness to give me job,No,same reason as above,"Yes, I think it would","Yes, I think they would",Somewhat not open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,female,Canada,Canada,Front-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat difficult,Maybe,Maybe,No,No,I don't know,Yes,1,Some did,N/A (not currently aware),Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,It depends on the severity of the issue,No,I don't want it to reflect negatively on my ability to carry out my responsibilities,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Maybe,No,No,1,Not applicable to me,Not applicable to me,24.0,female,Canada,Canada,Designer|Front-end Developer,Never,1
0,>1000,0.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,No,No,Maybe,I don't know,No,1,"Yes, they all did",I was aware of some,None did,Some did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,No,I would wait until I have an offer.,No,I think they would be less likely to make an offer.,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,No,Yes,1,Rarely,Sometimes,47.0,female,USA,USA,DevOps/SysAdmin|One-person shop,Sometimes,1
0,26-100,1.0,Yes,I am not sure,No,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,None of them,Yes,To make sure that my physical health issues would be accomodated,Maybe,"To ensure that my mental health issues would be accomodated, but it would depend on what the mental health issues I had were",Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,37.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,>1000,0.0,I don't know,No,No,I don't know,I don't know,Neither easy nor difficult,Yes,Maybe,Maybe,Maybe,No,Yes,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"if it affected my ability to do the work, if it required modifications to my environment",No,"I'm pretty sure that would eliminate me as a candidate. or it would trigger a bias in even the most well intentioned hiring team. it would make them suspicious of me and my technical abilities. finally, there is an ugly history of conflating mental illness with hysteria, or being ""too emotional"", I would be afraid that this would trigger certain stereotypes to surface ","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Never,Often,35.0,other,USA,USA,Designer|Front-end Developer|Back-end Developer|DevOps/SysAdmin|Other,Sometimes,1
0,100-500,0.0,Yes,Yes,No,No,Yes,Very difficult,Yes,No,No,No,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,I don't know,Yes,Yes,Yes,1,Often,Often,30.0,male,USA,USA,Support,Always,0
0,>1000,0.0,Yes,No,Yes,Yes,Yes,Somewhat easy,Maybe,No,No,Maybe,Yes,No,1,"Yes, they all did",I was aware of some,Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"I would like to think that health issues should be unrelated to the hiring process, but I know this is not always the case. Thus my ""maybe"" answer.",No,"I've directly witnessed people terminated for issues related to mental health issues before. Unless required by law or an ethical issue (like a pre-interview agreement), I wouldn't disclose any mental issues. I realize that this is not the best point of view, and it's why things like OSMI are so important.","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,42.0,male,USA,USA,Other|Dev Evangelist/Advocate|Back-end Developer|Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,I was aware of some,None did,None did,No,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,No,This has always resulted in being turned down for the position I interviewed for.,No,I believe it would result in not being hired.,"Yes, I think it would","Yes, they do",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,36.0,female,USA,USA,Designer,Sometimes,0
0,100-500,1.0,Yes,No,No,Yes,Yes,Very easy,No,No,No,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,No,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,31.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,Yes,I am not sure,Yes,No,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,Maybe,Only if it's something I would need accommodations for,No,I wouldn't want stigma or prescribed ideas of what I can/can't do to affect my chances of getting hired.,Maybe,"No, I don't think they would",Very open,"Yes, I observed",I don't know,Maybe,Maybe,Yes,0,Not applicable to me,Sometimes,28.0,female,USA,USA,Back-end Developer|Front-end Developer,Always,1
0,26-100,0.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,Maybe,No,Yes,Yes,I don't know,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Maybe,I would not want it to prevent me from getting the job.,No,I feel like that would negatively affect my employment opportunities.,"Yes, it has","Yes, they do",Somewhat open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Sometimes,Often,36.0,female,USA,USA,Other,Sometimes,0
0,6-25,1.0,Yes,Yes,No,No,Yes,Somewhat difficult,Yes,No,Maybe,Maybe,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did","Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,It's not relevant.,No,It's not relevant.,"Yes, it has",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,36.0,female,USA,USA,Other,Never,0
0,26-100,0.0,I don't know,No,No,No,I don't know,I don't know,No,No,No,No,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,There's always the concern that someone else would get hired purely out of the convenience for the employer of not having to deal with a physical health issue,No,"Leading with a mental health issue seems like it is immediately going to be seen as far more severe, problematic, etc.",Maybe,"Yes, I think they would",Neutral,Maybe/Not sure,Yes,Maybe,Maybe,Yes,1,Rarely,Often,32.0,male,Canada,Canada,Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,Some of them,Maybe,Fear of discrimination,No,Fear it would be held against me.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,42.0,male,USA,USA,One-person shop,Always,0
0,100-500,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,No,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,I think it could lead to not being hired.,No,I think it would definitely lead to not being hired.,Maybe,Maybe,Neutral,Maybe/Not sure,No,Maybe,Maybe,No,0,Never,Sometimes,41.0,female,USA,USA,Supervisor/Team Lead|Front-end Developer,Never,1
0,26-100,0.0,Yes,Yes,No,Yes,I don't know,Somewhat easy,No,No,Maybe,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"No, I don't think it would",Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,36.0,male,other,other,Executive Leadership,Sometimes,0
0,26-100,1.0,Yes,Yes,Yes,Yes,I don't know,Neither easy nor difficult,Yes,No,Maybe,No,Yes,No,1,"Yes, they all did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Just one more thing to filter me out ,No,Just one more thing to filter me out,Maybe,"No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Not applicable to me,Often,23.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,0.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,No,Maybe,Maybe,No,Yes,No,1,Some did,"Yes, I was aware of all of them",None did,Some did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,The interviewer might be uninformed as to the impact of my disability on my ability to do the job.,No,There is a stigma surrounding mental health issues. I must trust someone before sharing that info.,Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,54.0,female,USA,USA,Other,Never,0
0,26-100,0.0,I don't know,I am not sure,Yes,Yes,Yes,Neither easy nor difficult,Maybe,No,Yes,Maybe,I don't know,Yes,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,It would depend on the job requirements and expectations,Maybe,"It would depend on the job expectations, culture, and expectations.",Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,34.0,female,USA,USA,Other,Never,0
0,6-25,1.0,I don't know,No,No,No,I don't know,Very easy,Yes,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,"Yes, all of them",Some of my previous employers,Some of my previous employers,I don't know,None of them,No,im not gonna risk that,No,not gonna risk that !,"Yes, I think it would",Maybe,Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,36.0,male,Netherlands,Netherlands,Back-end Developer|DevOps/SysAdmin,Never,1
0,1-5,1.0,Yes,Yes,No,No,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,I don't know,None did,Some of them,No,"People like to associate mental health with drama, and might feel like you'd make the workplace more hostile.",No,Stigma,Maybe,Maybe,Very open,"Yes, I observed",Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,USA,USA,Front-end Developer,Never,1
0,100-500,1.0,Yes,Yes,No,I don't know,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,depends if it is relevant to my job,No,because I can't control their reaction and unlike physical disorders which are better understood metal disorders are often less understood and judged more ,"Yes, I think it would","Yes, I think they would",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Never,32.0,male,USA,USA,Designer,Always,0
0,6-25,1.0,Yes,Yes,No,No,No,Very difficult,Yes,Yes,Maybe,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Not open at all,Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Sometimes,Sometimes,21.0,male,Germany,Germany,Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Never,1
0,1-5,1.0,I don't know,No,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,It would have bearing on the job,Yes,Same reason as physical,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,44.0,male,USA,USA,Other,Always,0
0,26-100,1.0,I don't know,I am not sure,I don't know,I don't know,I don't know,Neither easy nor difficult,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,I don't know,Some did,"Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat not open,No,I don't know,Yes,Yes,No,0,Sometimes,Sometimes,33.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Always,1
0,>1000,1.0,Yes,No,No,I don't know,Yes,Very difficult,Maybe,No,No,No,No,Yes,1,I don't know,N/A (not currently aware),None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Yes,"Pretty obvious when you're on crutches, tends to raise questions!",No,I have a difficult enough time with my physical disabilities. Opening up my mental health issues at that time would serve no purpose,"Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,38.0,male,UK,UK,Supervisor/Team Lead|Support,Sometimes,0
0,>1000,1.0,Yes,I am not sure,Yes,Yes,I don't know,I don't know,Maybe,No,Maybe,Maybe,No,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Maybe,No,No,0,Sometimes,Sometimes,38.0,male,other,other,DevOps/SysAdmin|Other,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,Some did,"Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,currently no reason to. ,No,currently no reason to,"No, I don't think it would","No, I don't think they would",Somewhat not open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,38.0,female,USA,USA,Designer,Always,0
0,1-5,1.0,I don't know,No,No,I don't know,No,Very difficult,Maybe,Maybe,No,No,No,Yes,1,"No, none did","Yes, I was aware of all of them",None did,Some did,No,Some of them,"Yes, all of them","No, at none of my previous employers",I don't know,None did,Some of them,Maybe,"In usual enterprises do not give importance to health or problems from the 'worker'. It is a big wall, still, unhapiness. ",Yes,"Because it can affect the business, me and him if i am in bad mode.","Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",I don't know,No,No,No,1,Sometimes,Not applicable to me,22.0,female,other,other,Other,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Maybe,If it would limit or prevent me from doing my job or interfere with work schedules.,Maybe,If my prospective job was high stress or could trigger anxiety,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Sometimes,Often,33.0,other,USA,USA,Other|Executive Leadership|Supervisor/Team Lead|HR|Support|Sales|Designer|One-person shop,Sometimes,0
0,>1000,0.0,I don't know,No,No,No,I don't know,Very difficult,Maybe,Maybe,No,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",Yes,No,No,No,0,Not applicable to me,Not applicable to me,27.0,female,Canada,Canada,Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Doesn't seem appropriate at an interview.,No,Wouldn't get the job.,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,Yes,Yes,Yes,No,1,Rarely,Sometimes,55.0,female,USA,USA,One-person shop,Sometimes,0
0,6-25,0.0,No,No,No,No,I don't know,Somewhat difficult,Maybe,No,Yes,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,No,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,A health issue would have a negative effect on getting the job.,No,It would be a negative in the hiring process.,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,55.5,male,USA,USA,Front-end Developer,Sometimes,1
0,1-5,0.0,I don't know,I am not sure,No,No,I don't know,Very difficult,Maybe,Maybe,No,No,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Health benefits are expensive and few business hire someone they know will cost them a lot.,No,I believe it would severely hinder your chances of getting a job,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,Yes,Maybe,Maybe,No,1,Not applicable to me,Not applicable to me,25.0,male,USA,USA,Back-end Developer|Support|DevOps/SysAdmin,Sometimes,1
0,26-100,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",I don't know,Some did,Some of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Neutral,"Yes, I observed",I don't know,No,No,No,0,Not applicable to me,Not applicable to me,22.0,male,Netherlands,Netherlands,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Never,1
0,26-100,1.0,No,No,No,No,I don't know,Somewhat easy,No,No,Yes,Yes,No,No,1,"No, none did","No, I only became aware later",None did,None did,Sometimes,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,Maybe,maybe this physical health issue will not change the way I work,Maybe,"Yes, this shit can crack my workflow, you know? ","No, I don't think it would",Maybe,Somewhat not open,Maybe/Not sure,No,No,No,No,0,Sometimes,Often,29.0,male,other,other,Front-end Developer,Sometimes,1
0,100-500,1.0,No,No,Yes,Yes,No,Somewhat easy,Yes,No,No,Yes,I don't know,Yes,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did",No,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Fear of discrimination,Maybe,Stigma,"Yes, it has","Yes, they do",Somewhat not open,"Yes, I experienced",No,Yes,No,No,1,Sometimes,Sometimes,33.0,male,other,other,Executive Leadership,Never,0
0,6-25,1.0,No,No,No,No,I don't know,Somewhat difficult,Maybe,No,No,No,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,Yes,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,27.0,male,other,other,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Never,1
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Yes,Maybe,No,Maybe,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, it has","Yes, they do",Somewhat not open,Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Never,Sometimes,44.0,male,USA,USA,Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,I would bring it up if I am asked or if during the interview I think such issue may influence my performance.,Maybe,I would bring it up if during the interview I think such issue may influence my performance.,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,I don't know,Yes,Yes,No,1,Rarely,Often,38.0,male,other,other,One-person shop,Sometimes,0
0,6-25,0.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,Maybe,No,No,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,USA,USA,Supervisor/Team Lead|Designer|Front-end Developer|Support,Always,1
0,500-1000,0.0,Yes,I am not sure,Yes,Yes,No,Very difficult,Yes,No,Maybe,No,No,No,1,"No, none did","No, I only became aware later",None did,Some did,No,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Immediate disqualification,No,Immediate dismissal,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,55.5,female,USA,USA,Support,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,Yes,"I have a physical disability that is not visible. If I don't bring it up, it will make itself known down the line. Better to bring it up when I am in control of the situation, than to call in sick and surprise the employer. This also affect insurance policy, so keeping it hidden doesn't work out so well.",Maybe,"I probably would, if it had the same effect as my disability. If not, I can't say how I would act.",Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,43.0,male,other,other,Back-end Developer|Front-end Developer|One-person shop,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Because physical issues are visible,No,Because It makes me vulnerable,"Yes, I think it would",Maybe,Very open,No,No,Yes,Yes,Yes,1,Sometimes,Often,55.0,female,Germany,Germany,Front-end Developer,Always,1
0,>1000,1.0,Yes,Yes,I don't know,I don't know,I don't know,Neither easy nor difficult,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did",Sometimes,I don't know,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",Some of them,Yes,"Because if they can't deal with it, then I don't want to work with them.",Yes,"I would only bring it up if I felt it was going to negatively impact my work. If I knew it was, then it would only be fair to share it up front.","No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,No,Yes,1,Sometimes,Sometimes,32.0,male,USA,USA,Other,Always,0
0,>1000,0.0,Not eligible for coverage / N/A,No,No,Yes,I don't know,Very difficult,Yes,No,No,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,I don't know,No,Maybe,No,0,Not applicable to me,Not applicable to me,41.0,male,UK,UK,Front-end Developer,Never,1
0,1-5,1.0,No,I am not sure,No,Yes,I don't know,Very easy,No,No,Yes,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,"If it will affect my work, or require that I be treated differently from others, the employer needs to know about it before hiring me.",Maybe,"Depends on the mental health issue and how I feel about the interviewer. But just like a physical issue, if it's going to affect my employment, the employer should know about it up front. ","Yes, I think it would",Maybe,Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,38.0,female,USA,USA,Front-end Developer|Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Fear of not getting the job,No,Fear of not getting the job,"Yes, I think it would",Maybe,Not open at all,Maybe/Not sure,No,Yes,Yes,Yes,1,Sometimes,Often,46.0,male,USA,USA,Executive Leadership|One-person shop|Front-end Developer|Back-end Developer|Support|Supervisor/Team Lead,Sometimes,1
0,>1000,0.0,No,No,Yes,Yes,Yes,Somewhat difficult,No,No,Yes,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,There isn't a physical health issue that would affect the sort of work I do without stopping me working altogether.,Maybe,"It depends on how the interview is going, and how the condition may/may not affect the role.","Yes, I think it would","No, I don't think they would",Somewhat open,"Yes, I observed",Yes,Yes,No,Yes,1,Rarely,Sometimes,43.0,male,UK,UK,Supervisor/Team Lead,Never,0
0,100-500,1.0,Yes,Yes,No,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,"Yes, all of them","Yes, all of them","No, at none of my previous employers",Some of my previous employers,None did,Some of them,No,It has nothing to do with my ability to perform my role.,No,"Again, it has nothing to do with the ability to perform my role. I am not my mental illness.","No, I don't think it would","No, they do not",Somewhat not open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,29.0,female,USA,USA,Other,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,"I have back issues, neck issues and on occasion may need time off for treatment",Yes,"Depression, burn out and related issues often need attention. I wouldn't work for someone who didn't respect that.",Maybe,Maybe,Somewhat open,No,I don't know,Maybe,No,No,0,Not applicable to me,Not applicable to me,42.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,I don't know,I am not sure,Yes,I don't know,I don't know,Very easy,No,No,Yes,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,I think it would lower my chances of getting the job and take away from all the things that I can bring to the job! ,No,"Same thing, lower chances of getting the job and fear that they would zone in on that rather than all the awesomeness I can bring ","Yes, I think it would","Yes, I think they would",Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,25.0,female,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,26-100,1.0,Yes,Yes,Yes,No,No,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,No,"Well of course the employer doesn't want to hire people with significant physical health issues, especially if it's the first issue which comes up. Iv'e had to fill in Afghanistan for my country as asking country would make it too easy to identify me. You shouldn't be asking such personal questions on an anonymous survey.",No,"Well of course the employer doesn't want to hire people with significant physical health issues, especially if it's the first issue which comes up. On the other hand I would be comfortable putting in specific conditions for hours (time or amount) which I require for my own mental health. I'm looking for employment, not a psychological counsellor when I see work.","Yes, I think it would","Yes, they do",Neutral,Maybe/Not sure,No,Yes,Yes,Yes,0,Sometimes,Often,49.0,male,other,other,Executive Leadership|Supervisor/Team Lead|Designer,Never,0
0,26-100,1.0,No,No,Yes,No,I don't know,I don't know,Yes,Yes,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,"Unless the issue severely stops me from working, I think mentioning it would affect my chances. ",No,"I do not think that they would understand, and it would affect their decision. ",Maybe,Maybe,Somewhat open,Maybe/Not sure,Yes,No,Yes,Yes,1,Sometimes,Sometimes,36.0,male,other,USA,Other,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Yes,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Somewhat not open,"Yes, I observed",No,Yes,No,No,0,Not applicable to me,Often,30.0,male,UK,UK,One-person shop,Always,0
0,26-100,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,No,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,None of them,Maybe,It depends on the issue and how I feel like the employer is likely to respond.,No,I feel like they'd not hire me because of it. They'd come up with some BS excuse but I'd suspect it'd be because of the mental health issue.,"No, I don't think it would",Maybe,Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Other,Sometimes,0
0,>1000,0.0,I don't know,No,No,No,I don't know,Somewhat difficult,Maybe,Maybe,No,No,No,No,1,Some did,I was aware of some,None did,Some did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,If i felt it would negatively effect my chances of getting the position,No,I feel like it would prevent my future employment,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,37.0,male,USA,USA,Support|Front-end Developer|Designer,Sometimes,1
0,6-25,0.0,Not eligible for coverage / N/A,Yes,No,No,Yes,Somewhat difficult,Yes,No,No,No,I don't know,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,"Not unless it was relevant to my job, but I do not go after jobs where that could be and I do not really have any physical health issues. I would not bring up an intention to get pregnant either (which could be considered as such).",No,To avoid stigma.,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",Yes,Maybe,Yes,Yes,0,Rarely,Often,23.0,female,USA,USA,Other|Support|Back-end Developer|Front-end Developer|Designer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Yes,I would not feel it inappropriate,Maybe,Not sure how I'd feel about. I haven't had one,Maybe,Maybe,Neutral,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,UK,UK,DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, it has",Maybe,Very open,Maybe/Not sure,No,Maybe,Yes,Yes,1,Often,Often,42.0,male,Netherlands,Netherlands,One-person shop|Designer|Front-end Developer|Back-end Developer,Always,1
0,>1000,0.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,I am privileged enough to know how to do prior research. I expect to find answers to my question in existing resources on the HR site.,No,Stigma,Maybe,"Yes, I think they would",Somewhat not open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,32.0,male,USA,USA,Other,Never,0
0,1-5,1.0,No,No,I don't know,I don't know,I don't know,Somewhat difficult,No,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,I don't know,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,"If I was desperate for the job, I would not want to jeopardize my candidacy. On the other hand, if the health issue was very serious and could interfere with the responsibilities of the position, I feel that the employer should probably know about it.",Maybe,"If I was desperate for the job, I would not want to jeopardize my candidacy. On the other hand, if the health issue was very serious and could interfere with the responsibilities of the position, I feel that the employer should probably know about it.",Maybe,Maybe,Somewhat not open,Maybe/Not sure,I don't know,No,Maybe,No,0,Not applicable to me,Not applicable to me,28.0,male,Canada,Canada,Front-end Developer,Always,1
0,>1000,0.0,I don't know,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,No,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Neutral,No,Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,28.0,male,UK,UK,Back-end Developer,Never,1
0,>1000,1.0,Yes,Yes,No,I don't know,I don't know,Somewhat easy,Maybe,No,No,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"depends on the issue, afraid of presumptions",No,"more personal issue, afraid of looking like an excuse (see: why don't you just smile more?)","Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,29.0,male,USA,USA,Back-end Developer,Never,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,No,No,Yes,Yes,Yes,No,1,I don't know,I was aware of some,None did,None did,No,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Would be concerned I wouldn't be considered for the position.,No,Would be concerned I wouldn't be considered for the position.,"Yes, I think it would","Yes, I think they would",Very open,"Yes, I observed",No,Maybe,Maybe,Yes,0,Sometimes,Often,35.0,male,USA,USA,Supervisor/Team Lead,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Yes,"For example I might need a standing desk or special chair, that is considered more 'normal' than explaining your special needs for a mental health condition. ",No,"It would be considered strange. I am already a minority, I don't need more negative things counted against me in an interview. ","Yes, it has","Yes, they do",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,female,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,"Yes, always",Some of them,Some of them,"No, at none of my previous employers",I don't know,Some did,Some of them,Maybe,If it would impact my performance.,No,"I am bi-polar. For many people, their only understanding of bi-polar is the mass shooter on the nightly news. That is so far from the reality of most bi-polar people that it's like saying because you drive a car you must be a drunk driver.","Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,46.0,female,USA,USA,One-person shop,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Maybe,It would really depend on the circumstances,Maybe,"Same as before, it would really depend on the circumstances.",Maybe,Maybe,Somewhat open,"Yes, I observed",I don't know,Yes,Maybe,Yes,1,Rarely,Sometimes,19.0,male,USA,USA,Dev Evangelist/Advocate|DevOps/SysAdmin|Designer|Front-end Developer|Support,Sometimes,1
0,500-1000,1.0,Not eligible for coverage / N/A,I am not sure,Yes,Yes,Yes,Somewhat easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,During the interview process I wouldn't yet know details of the company's policy on this.,Maybe,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,No,I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,35.0,male,other,other,Other|Designer|Front-end Developer,Always,1
0,>1000,0.0,Yes,I am not sure,No,Yes,Yes,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"No, I don't think it would","No, I don't think they would",Very open,"Yes, I observed",I don't know,Maybe,No,No,0,Rarely,Never,31.0,male,UK,UK,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Sure,Maybe,Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,USA,USA,Executive Leadership,Sometimes,0
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,I don't know,"Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Yes,It's relevant.,Yes,It's also relevant,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,Canada,Canada,Front-end Developer,Always,1
0,6-25,1.0,I don't know,I am not sure,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Would just depend on the relevance to the discussion. I wouldn't bring it up unless necessary.,Maybe,Would just depend on the relevance to the discussion. I wouldn't bring it up unless necessary.,Maybe,"No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Never,Often,34.0,female,USA,USA,Support,Sometimes,0
0,26-100,1.0,Yes,Yes,No,No,I don't know,Very easy,No,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,Maybe,Yes if it would impact my work,Maybe,If it meant that I needed a flex schedule or similar accomodation,"No, I don't think it would",Maybe,Very open,No,Yes,Yes,No,Yes,1,Never,Sometimes,39.0,female,USA,USA,Other|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"Depends on the physical health issue and how severely it affects me. For example, I would talk about my carpal tunnel, because it affects my job performance and I need ergonomic keyboards and mice in order to not be in constant pain. I wouldn't bring up my polycystic ovarian syndrome (PCOS) because it does not affect my work performance.",Maybe,"I probably wouldn't, depending on what the hypothetical mental health issue is.","Yes, I think it would","Yes, I think they would",Very open,No,Yes,No,No,No,1,Not applicable to me,Sometimes,29.0,female,USA,USA,Front-end Developer|One-person shop,Always,1
0,100-500,1.0,Yes,Yes,No,No,I don't know,Somewhat difficult,Maybe,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Yes,Fear of discrimination,No,Feel like they would potentially not hire because of mental health issues,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,29.0,female,USA,USA,Back-end Developer,Always,1
0,>1000,1.0,Yes,I am not sure,No,Yes,Yes,Very easy,No,No,Yes,Yes,No,No,1,"Yes, they all did",I was aware of some,Some did,"Yes, they all did","Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,"If I have a physical health issue, the new employer needs to be aware of it before hiring me.",Maybe,It would depend on the type of MH iddue.,Maybe,Maybe,Somewhat open,No,Yes,Yes,No,No,1,Never,Sometimes,55.5,male,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear of discrimination,No,might not get the job,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Maybe,Yes,Yes,1,Rarely,Often,45.0,male,Australia,Australia,Designer|Front-end Developer|Back-end Developer|Sales|Supervisor/Team Lead,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",None did,None of them,Maybe,"Depends on the employer, the mood and the flow of the conversation. Nothing is set in stone, conversations like these are fluid.",Maybe,depends on the person,"No, I don't think it would","No, I don't think they would",Somewhat not open,No,I don't know,Maybe,Maybe,No,0,Sometimes,Sometimes,35.0,male,other,other,Front-end Developer|Back-end Developer|Dev Evangelist/Advocate,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,I expect to be discriminated against.,No,I would be discriminated against.,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I experienced",Yes,Yes,Maybe,Yes,1,Often,Sometimes,32.0,male,UK,UK,Back-end Developer|One-person shop,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Yes,"physical health is something that has no stigma attached. Although many places won't hire you, or look for ways to get rid of you if they can't get 100% productivity out of you.",No,"Employers look for ways to disqualify you. And even in our lovely web industry, we don not give one shit about employees beyond what we can extract from them.","Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I observed",I don't know,Maybe,No,No,0,Not applicable to me,Not applicable to me,44.0,male,USA,USA,One-person shop,Always,0
0,>1000,0.0,No,No,No,No,I don't know,Very difficult,Yes,Yes,No,No,No,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",No,I am concerned that it would count against me at interview stage.,No,I'm almost certain it'd count against me at interview stage.,"Yes, it has","Yes, I think they would",Somewhat not open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Often,Often,28.0,other,UK,UK,Support,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,I was aware of some,None did,None did,"Yes, always",I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,If i felt it needed special accommodation that could restrict my ability to perform the job if assistance not provided.,Maybe,trust - if I trusted the employer and needed their help I would bring it up. ,Maybe,"Yes, I think they would",Somewhat open,"Yes, I observed",No,Maybe,Maybe,No,1,Not applicable to me,Not applicable to me,39.0,male,other,other,DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,None did,Sometimes,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,No,"As a middle-aged women coder, I feel I already have two strikes against me when I interview.",No,"Same as for physical health, but mental health has more stigma attached to it.","Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",Yes,Yes,Maybe,No,1,Rarely,Often,55.0,female,USA,USA,One-person shop,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Unless the health issue relates specifically to my ability to do the job I would not feel a need to bring it up. ,No,There is no doubt in my mind that mental health issues are viewed negatively by those looking to hire in a competitive industry. ,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I observed",Yes,Maybe,Yes,Yes,1,Sometimes,Often,33.0,female,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Support,Sometimes,1
0,6-25,1.0,No,No,No,No,No,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,"Yes, they all did",None of them,No,"I work in tech so physical issues, unless my hard is broken, doesn't matter.",Yes,I don't have OCD but I'm little obsessive with things and I'm pretty open about it.,Maybe,"No, I don't think they would",Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,19.0,male,other,other,Front-end Developer|Back-end Developer|Support|Supervisor/Team Lead,Always,1
0,>1000,1.0,Yes,No,No,No,Yes,Somewhat easy,Maybe,No,No,No,No,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Anything that would add complications or additional load on my potential employer seems to only have negative ramifications.,No,I don't trust my employer with that information.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Maybe,Maybe,No,0,Rarely,Often,40.0,male,USA,USA,Other,Always,0
0,>1000,0.0,Yes,Yes,Yes,Yes,Yes,Very easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Na,"No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,Maybe,No,Yes,1,Never,Sometimes,49.0,female,USA,USA,Supervisor/Team Lead,Sometimes,0
0,6-25,1.0,Not eligible for coverage / N/A,No,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"It would depend on whether the issue would affect my needs in the workplace. If so, bring it up. If not, it's not necessary to bring up.",Maybe,Same reasons as physical,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,27.0,female,Australia,Australia,Front-end Developer,Sometimes,1
0,>1000,0.0,Yes,Yes,No,Yes,Yes,Somewhat easy,Maybe,No,No,No,No,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,"Yes, all of them",None of them,"No, at none of my previous employers",Some of my previous employers,None did,Some of them,Yes,"If I felt it was important, I wouldn't feel it was likely that there would be any negative effect from sharing this.",No,I have personally experienced negative treatment after disclosing mental illness. I want to avoid doing so ever again.,"Yes, it has","Yes, I think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,39.0,male,USA,USA,Designer,Never,0
0,>1000,0.0,I don't know,I am not sure,Yes,Yes,Yes,Neither easy nor difficult,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,"Yes, at all of my previous employers",Some of my previous employers,I don't know,None of them,Yes,Fear of discrimination,Yes,Stigma,"No, I don't think it would","No, they do not",Very open,Maybe/Not sure,No,Yes,Yes,Yes,1,Never,Sometimes,35.0,male,UK,UK,Support,Never,0
0,26-100,1.0,I don't know,No,No,I don't know,I don't know,I don't know,Maybe,Maybe,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,I don't know,Maybe,Maybe,No,0,Rarely,Sometimes,35.0,male,USA,USA,Supervisor/Team Lead|Front-end Developer|Back-end Developer|Dev Evangelist/Advocate,Sometimes,1
0,26-100,1.0,Yes,I am not sure,No,No,I don't know,Very difficult,Maybe,Maybe,Maybe,No,No,No,1,Some did,I was aware of some,None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",Maybe,"I guess it would depend on what type of physical issue it was and how often it may affect my work as far as absences for treatment, etc.",No,Mental health feels more subjective in some cases despite potentially having a diagnosis and could be viewed as detrimental to culture and performance if someone is say clinically depressed or has an anxiety disorder. Also it feels harder to explain potential absence due to a mental disorder.,"Yes, it has","Yes, I think they would",Somewhat open,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Rarely,Often,42.0,female,USA,USA,Designer,Sometimes,0
0,6-25,1.0,Yes,Yes,Yes,No,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,Yes,I don't feel that a physical disability should be a deciding factor in someone's potential employment. ,Yes,Disclosing mental illness up front is a good way to know an employer's stance or attitude towards mental illness and would help me decide if employment at that business would be worth it for me,"No, I don't think it would",Maybe,Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,Canada,Canada,One-person shop,Sometimes,0
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,None did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Don't want to be discriminated against,No,Do not want to be discriminated against,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",I don't know,Yes,No,Yes,1,Sometimes,Often,31.0,female,USA,USA,Support|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Sometimes,44.0,male,UK,UK,Front-end Developer|Back-end Developer|DevOps/SysAdmin,Always,1
0,100-500,1.0,Yes,Yes,No,No,I don't know,I don't know,Maybe,Maybe,No,No,I don't know,No,1,"Yes, they all did","No, I only became aware later",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,"Yes, at all of my previous employers",I don't know,None of them,Maybe,If they made an offer and the issue would impact my work or scheduling. ,Maybe,If they made an offer and the issue would impact them. ,Maybe,Maybe,Somewhat not open,No,I don't know,Maybe,Maybe,No,1,Sometimes,Sometimes,39.0,male,USA,USA,Supervisor/Team Lead|DevOps/SysAdmin|Front-end Developer|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Maybe,Depends on the context.,Maybe,I think it would depend on the mental health issue and how I felt it would impact the interview.,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,Canada,Canada,DevOps/SysAdmin|Back-end Developer|Front-end Developer|One-person shop,Always,1
0,>1000,1.0,I don't know,I am not sure,No,I don't know,I don't know,Somewhat easy,Maybe,Maybe,No,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,Some did,Some of them,Yes,.,Maybe,Mental issues are harder to be discussed with anyone.,Maybe,Maybe,Very open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,45.0,male,other,other,Supervisor/Team Lead,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,N/A (not currently aware),None did,Some did,I don't know,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Maybe,it would depend on how and/or if the issue would impact my ability to fulfill the role. i would also want to feel the employer out as best as possible before providing personal non-required information.,No,"see above — in this instance, i believe it would be perceived negatively.","Yes, I think it would","No, I don't think they would",Somewhat open,No,No,No,No,No,1,Not applicable to me,Not applicable to me,31.0,male,USA,USA,Designer,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,It shouldn't matter,No,It shouldn't matter,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,47.0,female,USA,USA,One-person shop|Designer,Sometimes,0
0,26-100,1.0,No,I am not sure,No,No,I don't know,Somewhat difficult,Maybe,No,No,Maybe,No,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,There are many laws that protect applicants from discrimination based on physical ability so I wouldn't feel too concerned about bringing up a physical health issue in an interview.,No,I feel like it would hurt my chances of getting the job. I'm not aware of any laws that protect applicants from discrimination based on mental health as there are with physical health.,Maybe,Maybe,Somewhat not open,No,Yes,Maybe,No,No,1,Not applicable to me,Not applicable to me,29.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,No,No,No,I don't know,I don't know,No,No,Yes,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"Although it should be protected, not convinced it wouldn't harm my chances.",No,"Although should be protected, not convinced it wouldn't harm my chances.","No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,Yes,No,Yes,1,Never,Often,20.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,1.0,Not eligible for coverage / N/A,No,No,I don't know,I don't know,Very difficult,Yes,Maybe,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"It could reduce my hire-ability, even though it may not as well, why take a chance?",No,See above note about physical discussion.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,USA,USA,Other,Never,0
0,500-1000,1.0,Not eligible for coverage / N/A,No,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"Depends on the context, usually they have no need to know",No,"Again, they have no need to know.","No, I don't think it would","No, I don't think they would",Very open,No,No,Yes,Yes,Yes,1,Rarely,Often,33.0,other,UK,UK,Dev Evangelist/Advocate|Back-end Developer|Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers",I don't know,Some did,Some of them,No,they would hold it against you,No,They would hold it against you,Maybe,"Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Maybe,Maybe,No,1,Sometimes,Often,55.5,female,USA,USA,One-person shop|Front-end Developer|Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them","Yes, all of them","Yes, at all of my previous employers","Yes, at all of my previous employers",None did,Some of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,No,Yes,Yes,Yes,No,0,Rarely,Not applicable to me,35.0,male,Canada,Canada,One-person shop,Sometimes,0
0,100-500,1.0,Yes,Yes,No,I don't know,I don't know,I don't know,Yes,No,No,No,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,"Yes, all of them",None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,No,Because why do they need to know.,No,Because why do they need to know.,"Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,Maybe,No,Yes,Yes,I don't know,Yes,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Not their place,No,Not topical to hiring,"No, it has not","No, they do not",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,36.0,male,USA,USA,Executive Leadership,Sometimes,0
0,100-500,1.0,Yes,Yes,No,Yes,No,Somewhat easy,Maybe,Maybe,No,No,I don't know,Yes,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,"Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Yes,Because it's an unfortunate part of who I am.,Yes,Because it's an unfortunate part of who I am.,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,No,Yes,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Support,Always,0
0,>1000,0.0,Yes,I am not sure,No,I don't know,Yes,Neither easy nor difficult,Maybe,No,Maybe,No,No,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Should not be relevant to hiring deicition,No,Would not want to bring up anything like this as it could negatively influence hiring decision,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,44.0,female,USA,USA,Support,Never,0
0,1-5,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,Maybe,Maybe,Maybe,No,Yes,No,1,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"It would depend on the physical health issue. To me, no one should be treated differently based on a health issue. But some employers might be turned off by that information.",No,"There's a still very prominent stigma against mental health and that anyone with a mental illness is ""crazy."" Some people would brush it off and understand that it's just like having asthma—an illness that we have to take medication for and we can live normal lives with it. But some don't understand that.","Yes, I think it would",Maybe,Somewhat not open,No,I don't know,Yes,Yes,Yes,1,Rarely,Often,23.0,female,USA,USA,Front-end Developer|Designer,Sometimes,1
0,>1000,0.0,Yes,No,No,Yes,I don't know,I don't know,Maybe,No,No,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Not sure if it would affect my work,No,Depends on if it would affect my work,"Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,46.0,male,USA,USA,Support,Never,0
0,100-500,1.0,Yes,Yes,No,No,I don't know,Very easy,No,No,Yes,Yes,No,Yes,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did",Sometimes,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Never,Sometimes,33.0,female,USA,USA,Front-end Developer,Always,1
0,500-1000,0.0,Yes,Yes,No,No,Yes,Somewhat easy,Yes,Maybe,Maybe,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Potential discrimination,No,Potential discrimination,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,32.0,female,USA,USA,Other,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"If the physical health issue would affect my job yes I would bring it up. Mental health issue I would not, I see the problem here, but I still wouldn't bring it up :/",No,"The stigma attached to mental health is still to great, its better, but not there yet IMHO.","Yes, it has",Maybe,Somewhat open,"Yes, I experienced",No,Yes,Maybe,Yes,1,Sometimes,Sometimes,45.0,male,Australia,other,DevOps/SysAdmin|Support|Back-end Developer|One-person shop,Sometimes,1
0,6-25,1.0,No,No,No,No,I don't know,Neither easy nor difficult,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,depends what the issue is.,Maybe,Depends on the type of mental disorder.,"No, I don't think it would","No, I don't think they would",Somewhat open,No,I don't know,Yes,Yes,No,1,Never,Often,26.0,male,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,Maybe,It would depend on the type of issue. A broken leg wouldn't be relevant.,No,"I haven't been diagnosed with a mental health issue, but if I were, I think I would only bring it up to people I trusted. Potential employers wouldn't fall into that category.",Maybe,Maybe,Not applicable to me (I do not have a mental illness),Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,32.0,female,USA,USA,DevOps/SysAdmin|Back-end Developer,Always,1
0,>1000,1.0,I don't know,I am not sure,No,I don't know,I don't know,Very easy,No,No,Maybe,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of no offer,No,No offer,Maybe,"No, I don't think they would",Not open at all,No,No,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"Yes, at all of my previous employers",None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,No,Yes,No,No,0,Not applicable to me,Not applicable to me,44.0,male,USA,USA,One-person shop|Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,I'm not sure discussing weaknesses is what interviews are for!,No,Same answer as above: why on earth would you discuss a weakness?,"Yes, it has","No, I don't think they would",Very open,Maybe/Not sure,Yes,Maybe,Maybe,No,0,Not applicable to me,Often,42.0,male,UK,UK,One-person shop,Always,0
0,>1000,1.0,Yes,No,I don't know,Yes,I don't know,Somewhat difficult,Maybe,Maybe,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Fear it would negatively bias myself,No,Fear it would negatively bias me,Maybe,Maybe,Very open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Yes,Maybe,No,No,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,No,It could negatively influence my chances of being hired.,No,It could negatively influence my chances of being hired.,"Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I observed",Yes,Maybe,Maybe,Yes,1,Not applicable to me,Often,28.0,female,USA,USA,Front-end Developer|Designer,Sometimes,1
0,100-500,1.0,Yes,Yes,I don't know,I don't know,Yes,Somewhat easy,No,No,Yes,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"No, it has not","No, they do not",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,31.0,male,Canada,Canada,Supervisor/Team Lead,Always,0
0,100-500,1.0,Yes,No,No,No,I don't know,Somewhat difficult,Maybe,No,No,Maybe,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,Maybe,Not open at all,No,I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,29.0,male,USA,USA,Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,No,No,No,I don't know,Somewhat easy,Maybe,No,No,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,Not relevant,No,Not relevant to my skills,Maybe,"Yes, I think they would",Not open at all,Maybe/Not sure,No,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,33.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,Yes,I don't know,Yes,Yes,I don't know,Maybe,Maybe,Maybe,Maybe,Yes,No,1,Some did,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,No,Fear of discrimination,No,Fear of discrimination,"Yes, I think it would",Maybe,Somewhat not open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Sometimes,43.0,female,USA,USA,Executive Leadership,Always,0
0,100-500,1.0,I don't know,I am not sure,Yes,Yes,I don't know,Very easy,No,No,Maybe,Yes,Yes,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Maybe,Only if it affected my ability to do the job,No,Physical is more obvious,Maybe,"No, I don't think they would",Somewhat open,No,No,No,Maybe,No,0,Never,Sometimes,28.0,male,Australia,Australia,Dev Evangelist/Advocate|Front-end Developer|Back-end Developer|DevOps/SysAdmin,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Neutral,No,I don't know,Maybe,Maybe,No,0,Sometimes,Often,42.0,other,UK,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Always,1
0,100-500,1.0,Yes,I am not sure,No,No,I don't know,Neither easy nor difficult,Maybe,No,No,Maybe,I don't know,Yes,1,Some did,I was aware of some,None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,Yes,Everybody's had a physical health issue at some point in their life.,No,Don't want to be flagged as crazy.,Maybe,Maybe,Very open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,38.0,male,USA,USA,Dev Evangelist/Advocate,Always,1
0,6-25,0.0,Yes,Yes,No,No,Yes,Somewhat easy,Maybe,No,Maybe,No,I don't know,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always",I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Yes,I have chronic lower back pain due to a narrow disk. I would have no problem telling my employer about this if I felt lifting would be a part of my job.,No,I feel like employers are not as understanding of prospective employees who might admit to battling bouts of depression or anxiety.,"Yes, I think it would",Maybe,Somewhat open,"Yes, I observed",No,Yes,Maybe,Yes,1,Never,Sometimes,30.0,male,USA,USA,DevOps/SysAdmin|Support|One-person shop,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,Some did,No,"Yes, all of them",Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,It would depend on the issue and the job.,No,"It's private, being treated successfully, and would eliminate the chance of getting the job.","Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Never,Often,51.0,female,USA,USA,One-person shop,Sometimes,0
0,26-100,1.0,I don't know,No,No,I don't know,I don't know,Somewhat easy,Maybe,Maybe,No,No,No,No,1,Some did,I was aware of some,Some did,Some did,"Yes, always","Yes, all of them",Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,No,Prefer to focus on benefits I bring. ,No,Prefer to focus on benefits I bring. ,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,48.0,female,USA,USA,Executive Leadership,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,To test how supportive the environment will be.,Maybe,To test how supportive the environment will be.,Maybe,Maybe,Somewhat open,No,I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,39.0,male,other,other,One-person shop,Always,0
0,6-25,1.0,No,No,No,No,I don't know,Neither easy nor difficult,Yes,Maybe,No,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them","Yes, all of them",Some of my previous employers,"No, at none of my previous employers",None did,None of them,No,Fear of not getting the job.,No,Fear of not getting the job,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,28.0,male,Australia,Australia,Designer|Support|Supervisor/Team Lead,Sometimes,0
0,100-500,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,Yes,1,"Yes, they all did",I was aware of some,"Yes, they all did",Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Depends on relevance to work ,No,Too personal ,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Rarely,Often,37.0,male,USA,USA,Front-end Developer|Designer,Always,1
0,>1000,1.0,Yes,No,I don't know,I don't know,I don't know,Neither easy nor difficult,Maybe,Maybe,Yes,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,I don't know,Yes,No,No,1,Sometimes,Sometimes,33.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Somewhat difficult,Yes,Yes,No,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,It would negatively affect my chances of gaining employment,No,It is impossible to talk about mental health issues with people you don't know and trust. You don't know how they will react and in my experience there is never any positive or favourable reaction to discussing mental health issues,"Yes, it has","Yes, I think they would",Somewhat not open,"Yes, I experienced",No,No,Yes,No,1,Not applicable to me,Often,21.0,male,Australia,Australia,Front-end Developer,Never,1
0,26-100,0.0,Yes,I am not sure,No,No,I don't know,Very difficult,Yes,Yes,No,No,No,Yes,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,"Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,I would not want a possibly unrelated physical impairment to interfere with the prospect of being hired,No,Would not want to be the reason I did not receive the job,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,No,Yes,1,Rarely,Often,25.0,male,USA,USA,Other|Supervisor/Team Lead|Dev Evangelist/Advocate|DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer|Designer|One-person shop,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Yes,Stigma,"No, I don't think it would",Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,15.0,male,Canada,Canada,Other,Sometimes,0
0,100-500,1.0,Yes,No,No,No,I don't know,Somewhat difficult,Maybe,Maybe,Maybe,No,No,Yes,1,Some did,I was aware of some,None did,None did,Sometimes,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No, Don't trust potential employers to not judge.,No,Don't trust them not to judge and deny the job.,"Yes, it has",Maybe,Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Sometimes,Often,40.0,male,USA,USA,Back-end Developer,Always,1
0,100-500,0.0,No,I am not sure,No,No,I don't know,Neither easy nor difficult,Maybe,No,No,Maybe,I don't know,No,1,Some did,I was aware of some,I don't know,Some did,Sometimes,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,If it was something to do with a workspace like requiring a standing desk etc ,No,Because I don't think they would hire me then ,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Maybe,Yes,1,Not applicable to me,Often,30.0,female,Canada,Canada,Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Neutral,No,I don't know,No,Maybe,No,0,Sometimes,Sometimes,27.0,male,other,other,Support,Always,0
0,1-5,1.0,No,No,No,No,No,Very easy,No,Maybe,Maybe,No,I don't know,Yes,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Yes,Stigma,"Yes, I think it would","Yes, I think they would",Very open,No,No,No,No,No,0,Never,Never,25.0,male,other,other,Back-end Developer|Front-end Developer,Never,1
0,>1000,1.0,Yes,I am not sure,No,No,Yes,Somewhat easy,Maybe,No,Yes,Maybe,I don't know,No,1,"Yes, they all did","No, I only became aware later",None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Private ,No,Private,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,Germany,Germany,Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Sometimes,1
0,100-500,0.0,I don't know,No,No,I don't know,I don't know,I don't know,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,"Typically more common and, in my eyes, physical health issues do not have a stigma attached to them like many mental health issues. Any kind of mental health issue tends to leave a lot of people ending up with some sort of 'label'.",Maybe,I'd be concerned that if I mentioned my generalised anxiety issues it may lead them to believe that I am not a confident worker (which I almost certainly am). Basically - I'd fear they wouldn't properly understand! A lot of people are incredibly ignorant to anxiety and just end up telling you 'not to worry' about parts of your day to day that may make one feel anxious etc.,"No, I don't think it would",Maybe,Somewhat open,No,Yes,No,Maybe,No,1,Rarely,Often,24.0,male,UK,UK,Support|Designer,Never,0
0,6-25,1.0,Not eligible for coverage / N/A,No,No,No,I don't know,Somewhat difficult,No,No,Maybe,Yes,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","No, I don't think they would",Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,23.0,male,UK,UK,Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,No,It's not relevant to my ability to code. I'm also protected by EU law on disability.,No,"Because of the stigma around my ability to do my job, cope, etc.","Yes, it has","No, I don't think they would",Somewhat open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Sometimes,39.0,female,UK,UK,One-person shop|Other,Always,0
0,6-25,1.0,I don't know,I am not sure,No,No,Yes,Neither easy nor difficult,Maybe,No,Yes,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,It would limit potential for employment,No,It would limit potential for employment - why would they hire someone with mental health issues over a healthy person? It's like being on a football team - would they hire someone injured or someone ready to jump in and play?,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,USA,USA,Other|Supervisor/Team Lead|Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,0.0,I don't know,I am not sure,No,I don't know,I don't know,Neither easy nor difficult,Maybe,Maybe,No,No,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,Depends on the job and organisation,Maybe,Hard to say. Probably as would jeapodise job,Maybe,"Yes, I think they would",Somewhat open,No,No,No,No,No,0,Rarely,Not applicable to me,43.0,male,UK,UK,Support,Never,0
0,6-25,1.0,I don't know,I am not sure,No,No,I don't know,Very easy,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,Maybe,Unsure how they would react. Even good people have unconcious bias..,Maybe,Depends how empathetic the interviewer was. And how certain a job offer already is. Might cause bias unintentionally if raised to early,"No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,Maybe,Maybe,No,0,Not applicable to me,Sometimes,30.0,male,other,other,Executive Leadership|Supervisor/Team Lead|Front-end Developer|Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,N/A (not currently aware),None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,No,"Because I'd be automatically sorted out. Let's face it folks: Whether its a ""physical"" or a ""mental"" impairment, reality and the ""would be nice"" situation / laws are two complete different things.",Maybe,"If I was going back, even just part-time, to fulltime employment, I'd want to make sure that at least my minimum requirements are met (eg. no open-plan office and similar nasties). Expecting anything more is .. naive.","Yes, I think it would","Yes, I think they would",Somewhat open,No,No,Maybe,Yes,Yes,1,Sometimes,Rarely,35.0,male,other,Germany,Designer|Front-end Developer|Back-end Developer|Executive Leadership|Other,Always,1
0,26-100,0.0,I don't know,No,No,No,I don't know,Very difficult,Maybe,No,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Because it's illegal for them to ask and there is no obligation for me to offer the information.,No,See above.,"Yes, I think it would","Yes, I think they would",Not open at all,Maybe/Not sure,I don't know,Maybe,Maybe,No,0,Not applicable to me,Sometimes,40.0,male,UK,UK,Designer|Front-end Developer|Back-end Developer|Supervisor/Team Lead|Executive Leadership,Sometimes,1
0,26-100,0.0,Yes,No,No,No,I don't know,Very difficult,Maybe,No,No,No,No,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,None of them,Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Maybe,I need an ergonomic keyboard (preferably my own) this is a thing I'd absolutely mention during the interview process. I'd be a bit more reticent to discuss my back pain,No,Fear of bias/negative impact on prospects.,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,No,1,Not applicable to me,Often,33.0,female,UK,UK,Supervisor/Team Lead|DevOps/SysAdmin|Support|Front-end Developer|Designer|One-person shop,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,"It depends on the situation. If it would impede the work that I do, then yes.",Maybe,I deal with bouts of Anxiety and Depression but not clinical levels. Sometimes it gets the better of me but it has never been obstructive,"No, I don't think it would","No, I don't think they would",Somewhat open,No,No,No,Maybe,No,1,Rarely,Sometimes,35.0,male,other,other,One-person shop,Sometimes,0
0,6-25,1.0,No,No,No,No,I don't know,I don't know,Yes,Maybe,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,22.0,male,UK,UK,Front-end Developer|Back-end Developer|DevOps/SysAdmin|Dev Evangelist/Advocate,Never,1
0,100-500,1.0,Yes,I am not sure,I don't know,Yes,I don't know,I don't know,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,I don't know,Some did,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,28.0,male,USA,USA,Back-end Developer,Always,1
0,>1000,1.0,Yes,Yes,No,No,No,Very difficult,Maybe,No,No,No,No,No,1,Some did,"Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,I don't want it to affect me getting the job.,No,Same reason as above,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,39.0,male,USA,USA,Support,Sometimes,0
0,100-500,1.0,I don't know,No,I don't know,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"Depending on the nature of the health issue, I may feel uncomfortable sharing it with someone I'm not close to.",Maybe,"Depending on the nature of the health issue, I may feel uncomfortable sharing it with someone I'm not close to.","No, I don't think it would","No, I don't think they would",Somewhat open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,USA,USA,Support,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,I would bring it up if it affected my ability to do the job. I wouldn't bring it up if it felt irrelevant and wouldn't affect my ability to do the job.,Maybe,I would bring it up if it affected my ability to do the job. I wouldn't bring it up if it felt irrelevant and wouldn't affect my ability to do the job.,"No, I don't think it would",Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,25.0,female,UK,UK,DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Always,1
0,6-25,1.0,I don't know,I am not sure,No,No,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,I don't know,I was aware of some,None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Afraid it would cost me the job.,No,Afraid it would cost me the job.,"Yes, I think it would",Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead|Back-end Developer|DevOps/SysAdmin,Sometimes,1
0,500-1000,1.0,I don't know,No,No,Yes,I don't know,I don't know,Maybe,No,No,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,41.0,female,other,other,Front-end Developer,Never,1
0,>1000,1.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat easy,No,No,No,No,I don't know,No,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did",Sometimes,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Maybe,"From the interviewing advice I've read, health issues should be brought up at the offer stage, not during the interview. If I had a good rapport with the interviewer, I might bring it up in the interview. Otherwise, I wouldn't mention it until offered the job.",Maybe,Same answer as for physical health issues.,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,0,Rarely,Sometimes,30.0,female,USA,USA,Back-end Developer,Sometimes,1
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,"Yes, I was aware of all of them","Yes, they all did",Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,"If I had a health issue and want coverage, it's important I be up front about it to ensure I'm eligible for such coverage. ",Maybe,Depended on the issue and the employer. ,"No, I don't think it would",Maybe,Somewhat open,No,Yes,Yes,No,No,0,Not applicable to me,Not applicable to me,42.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,6-25,1.0,Yes,No,No,No,I don't know,Somewhat difficult,No,No,Maybe,Maybe,Yes,No,1,"Yes, they all did",I was aware of some,None did,None did,"Yes, always",None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Yes,Because it's important.,Maybe,Not sure.,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,52.0,male,USA,USA,Support|Front-end Developer|Back-end Developer,Sometimes,1
0,26-100,1.0,No,No,No,No,I don't know,Somewhat easy,No,No,Maybe,Maybe,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,to get support,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Sometimes,Often,30.0,male,other,USA,Back-end Developer,Always,1
0,500-1000,1.0,Yes,Yes,No,I don't know,Yes,Neither easy nor difficult,No,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,"Yes, always",None of them,Some of them,Some of my previous employers,"Yes, at all of my previous employers",Some did,None of them,Maybe,"Yes, If relevant to the duties of the position. Otherwise, not necessary. ",Maybe,"Less likely, simply because the general perception and knowledge about mental illnesses is less widely understood. For instance, Adult ADD might be simple to explain, whereas Bipolar II would be a longer discussion and may be avoided in an interview.",Maybe,Maybe,Very open,No,I don't know,Yes,Yes,No,1,Rarely,Sometimes,35.0,male,USA,USA,Front-end Developer|Designer,Sometimes,1
0,26-100,1.0,I don't know,No,No,No,I don't know,I don't know,No,No,Maybe,No,No,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,"I would not want to preclude myself from employment based on something that was irrelevant to my abilities to complete my job. If potentially having a lot of doctor's appointments is the only drawback for my employer, they shouldn't weigh another application as stronger based on that.",No,The same as above. I would not want my application to be viewed in any poorer light compared to my peers.,"Yes, I think it would","No, I don't think they would",Somewhat open,No,No,Yes,No,Yes,1,Not applicable to me,Not applicable to me,24.0,male,USA,USA,Other,Sometimes,0
0,6-25,1.0,I don't know,I am not sure,I don't know,I don't know,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,To avoid being potentially disqualified due to that fact.,No,To avoid being disqualified due to that fact.,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,39.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,Yes,I am not sure,No,No,I don't know,Very difficult,Yes,Maybe,Maybe,Maybe,Yes,Yes,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,"Yes, they all did",Some of them,Maybe,"Often it's important to being able to accomplish the job... so yes, it would need to be discussed.",Maybe,Still such a stigma there... it's important though... tough call,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",Yes,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,"Yes, they all did","Yes, they all did",I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,Yes,No,No,No,1,Not applicable to me,Not applicable to me,32.0,male,USA,USA,Front-end Developer|Back-end Developer|Sales|Support|DevOps/SysAdmin|Supervisor/Team Lead|Executive Leadership,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,It depends how obvious it is (visually) and how it would affect my work,No,Because it is not visible and an employer would look on it negatively. ,"Yes, I think it would",Maybe,Very open,"Yes, I experienced",Yes,Maybe,Maybe,Yes,1,Never,Often,25.0,male,UK,UK,One-person shop|Front-end Developer|Back-end Developer|Support|Other,Sometimes,1
0,26-100,0.0,No,No,No,No,No,Very difficult,Yes,Yes,No,No,No,No,1,"No, none did",N/A (not currently aware),I don't know,None did,I don't know,"Yes, all of them","Yes, all of them","Yes, at all of my previous employers","No, at none of my previous employers",None did,None of them,No,"If I want the job, I should be at my full health, so. It's cultural thing here too.",No,same reason,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",I don't know,Maybe,Maybe,No,0,Often,Often,43.0,male,other,other,Back-end Developer,Never,1
0,6-25,1.0,Yes,No,No,I don't know,Yes,Very difficult,No,No,No,Maybe,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Could impact the outcome of the interview.,No,Would alter the outcome of the interview.,"Yes, I think it would","No, I don't think they would",Not open at all,Maybe/Not sure,No,No,No,No,1,Not applicable to me,Not applicable to me,39.0,male,USA,USA,Dev Evangelist/Advocate|Back-end Developer|Front-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,"If accomodations are needed, it's required by law to do so.",No,"I don't believe that it would impact the interview anyway positive, but could have very negative impacts.","Yes, I think it would","No, I don't think they would",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,0,Never,Sometimes,35.0,male,USA,USA,One-person shop|Front-end Developer|Back-end Developer,Always,1
0,26-100,1.0,Yes,Yes,No,No,Yes,Somewhat easy,No,No,Yes,Yes,No,No,1,"Yes, they all did",I was aware of some,Some did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Potentially affects my capabilities on the job.,Yes,Potentially affects my capabilities on the job.,Maybe,"No, they do not",Very open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Rarely,Often,34.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,0.0,Yes,I am not sure,Yes,I don't know,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Worried it may affect my chances of getting the job.,No,Worried it would affect my chances of getting the job.,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,UK,UK,Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,I don't know,Yes,Somewhat easy,Yes,Maybe,Yes,Yes,No,Yes,1,"Yes, they all did",I was aware of some,Some did,Some did,"Yes, always",None of them,Some of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",Some did,None of them,No,"Talking about health issues has always been responded to as though I'm asking for personal accommodation, even when I'm just trying to raise awareness for something that's widespread. Bringing it up in an interview would be putting the cart before the horse.",No,Same reason as above basically. Except the added knowledge of how society views people with depression and anxiety and how that portrayal could reflect on me and affect my chances of getting a job I'm qualified for.,"Yes, it has","Yes, they do",Very open,"Yes, I experienced",I don't know,Yes,Yes,Yes,1,Sometimes,Often,26.0,female,USA,USA,Support,Always,0
0,6-25,1.0,No,I am not sure,No,No,I don't know,Neither easy nor difficult,Maybe,No,Maybe,No,I don't know,No,1,"No, none did",N/A (not currently aware),I don't know,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,24.0,male,other,other,Back-end Developer,Sometimes,1
0,>1000,0.0,I don't know,I am not sure,Yes,Yes,I don't know,Very difficult,Yes,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,None of them,Maybe,"If it wasn't immediately apparent and/or it was embarassing to talk about with someone who is not family or a close friend, I wouldn't tell them.",No,"I want to be viewed as someone they can rely on and who is emotionally strong, even though that might not be the case.","No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,27.0,female,USA,USA,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Sometimes,1
0,6-25,1.0,Yes,Yes,Yes,Yes,Yes,Neither easy nor difficult,No,No,Maybe,No,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,If it is going to be something that Im dealing with at the time or something that is noticeable then yes. I feel that most employers would be more accepting of a physical health issue than a mental health issue. ,No,I am currently an opiate addict and will be for as long as I live. I have not used in 3 years. It still messes with me to this day. I do not think I would ever be comfortable sharing that with an employer. Its not documented anywhere that I am an addict so there would be no reason to share such a thing to an employer. Most people do not realize that I have something wrong with my brain chemistry not that I am a terrible person or want to be this way. I do great work and I have had my current job for 6 years. But I feel like if I told any employer that I would be discriminated against or eventually let go.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",No,Yes,Yes,No,1,Never,Sometimes,25.0,male,USA,USA,One-person shop,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,37.0,male,USA,USA,One-person shop|Designer|Front-end Developer|Back-end Developer|Sales|Support,Sometimes,1
0,>1000,0.0,Yes,I am not sure,I don't know,Yes,Yes,Neither easy nor difficult,Maybe,No,No,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,I have an eye condition that will require medical leave at some yet to be determined future point.,No,I think it would negatively impact the interview.,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Maybe,No,No,0,Not applicable to me,Not applicable to me,33.0,male,Canada,Canada,Supervisor/Team Lead|Dev Evangelist/Advocate|DevOps/SysAdmin|Support|Back-end Developer|Designer|Front-end Developer,Sometimes,1
0,26-100,0.0,No,I am not sure,Yes,I don't know,Yes,Somewhat difficult,Yes,No,No,No,I don't know,No,1,Some did,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,Some of them,Maybe,Depends on relevance to performance,Maybe,Depends on relevance to performance,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",No,Yes,Yes,Yes,1,Sometimes,Often,34.0,male,USA,USA,Support,Sometimes,0
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat difficult,Maybe,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,"It could be seen as a weakness, or the potential employer could see it as a person trying to take advantage of their healthcare plan.",No,"Of fear of being regarded as weak or unable to perform job tasks. Requiring time off for ""fake"" reasons. ","Yes, I think it would","Yes, I think they would",Somewhat open,No,I don't know,Yes,Yes,Yes,1,Not applicable to me,Often,27.0,male,Canada,Canada,Designer,Sometimes,0
0,100-500,1.0,Yes,No,No,I don't know,I don't know,Very easy,Maybe,No,No,Maybe,I don't know,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,Maybe,They might not be willing to give me a shot. That's how I feel.,No,"In my experience, many people see mental health as a lesser issue than physical health, and one that can fixed if they ""man up"" or grow up. I worry that mentioning a chronic mental health issue would be viewed as a detriment and a weakness to my work.","Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Sometimes,Often,33.0,male,USA,USA,Support,Sometimes,0
0,6-25,1.0,Yes,I am not sure,No,I don't know,I don't know,Somewhat easy,Maybe,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,if it affected my ablility to do my work,Maybe,It may affect my being hired,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Often,Often,50.0,male,USA,USA,DevOps/SysAdmin,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,Maybe,The competition is to fierce to reveal any weaknesses or deficits that might effect their decision to hire. But I WOULD reveal if I thought it would affect my performance.,No,I believe the bias against mental health issues is too strong. And it DOES effect my performance. It's why I freelance.,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,54.0,female,USA,USA,One-person shop,Sometimes,0
0,>1000,1.0,Yes,I am not sure,Yes,No,Yes,Very difficult,Yes,No,Yes,No,No,Yes,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,what if it was the one difference between me and the competition ,No,wouldn't want the stigma,"Yes, I think it would","No, they do not",Neutral,"Yes, I observed",I don't know,Yes,No,Yes,1,Sometimes,Often,32.0,female,Canada,Canada,Supervisor/Team Lead|Sales,Sometimes,0
0,6-25,1.0,I don't know,I am not sure,I don't know,Yes,Yes,Very easy,No,No,Maybe,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,"No, I don't think it would","No, I don't think they would",Neutral,No,No,No,No,No,0,Not applicable to me,Not applicable to me,39.0,male,Canada,Canada,Front-end Developer,Sometimes,1
0,6-25,1.0,I don't know,No,I don't know,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,It would become obvious later if it didn't come up during the interview.,Maybe,Seems more private than a physical issue.,Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,36.0,male,USA,USA,Back-end Developer|Front-end Developer|Designer,Sometimes,1
0,100-500,1.0,I don't know,No,No,No,I don't know,Somewhat easy,Maybe,No,Yes,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Some physical issues can be private too.,No,That would be job suicide.,Maybe,"No, I don't think they would",Very open,No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,34.0,male,Canada,Canada,Front-end Developer,Sometimes,1
0,100-500,1.0,I don't know,I am not sure,No,No,I don't know,I don't know,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,"It depends on the physical health issue. There are too many companies in tech that worship the ""dev rock star"" stereotype where long hours and the sacrifice of work balance is held in higher regard. They will work devs to the bone if we allow them too. Any resistance to working too many hours is labeled as ""rebellion"". I've worked jobs where I had to strategically plan my days off because I couldn't afford to lose all my PTOs and as a result, have forced myself to go to work even while having asthma or being sick. Basically, if I'm not half dead, then I can make it to work because I need to ""save those days for when I really need it"".",No,"The stigma makes me wary of bringing up mental health issues during an initial interview. I feel like the more I get to know a job and it's people, that determines how comfortable I am with being open about my mental health. I feel like it's too risky to bring up in an interview where both parties don't know one another well enough. I have anxiety and depression, which can also include focus/motivation issues. I feel like mentioning things like this would give the impression that I'm not a good employee who can get things done. However that's not true. I am very responsible and will meet deadlines so long as I can work when I'm most productive and there are flexible schedules.",Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Maybe,No,1,Sometimes,Often,31.0,female,USA,USA,Front-end Developer,Sometimes,1
0,>1000,0.0,No,No,Yes,Yes,I don't know,Somewhat easy,No,No,Maybe,Yes,No,No,1,"No, none did",I was aware of some,None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,"I feel it's best to be candid in an interview, especially in regards to how the employer might be able to accommodate a physical (or mental) health issue.",Maybe,"I feel it's best to be candid in an interview, however mental health issues are still a stigma — I'd likely play it by ear and balance the decision of whether to bring it up during an interview based on the tone and thoroughness of the interview.",Maybe,Maybe,Somewhat not open,"Yes, I experienced",Yes,Yes,Maybe,Yes,1,Never,Rarely,36.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer|Designer,Never,1
0,>1000,0.0,I don't know,I am not sure,Yes,Yes,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,None of them,No,I would assume that would put me lower on the list for getting the job,No,A negative count against me for the job,"Yes, I think it would",Maybe,Somewhat not open,No,I don't know,No,No,No,0,Sometimes,Often,48.0,male,USA,USA,Other|DevOps/SysAdmin|Support|Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,Very easy,No,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,Some of them,No,I feel like it would effect my chances of getting a job. It's also none of their business unless it effects my performance.,No,I feel like it would effect my chances of getting a job. It's also none of their business unless it effects my performance.,Maybe,"Yes, they do",Not open at all,No,Yes,Yes,Maybe,Yes,1,Sometimes,Sometimes,31.0,male,USA,USA,Back-end Developer,Never,1
0,1-5,1.0,No,No,No,No,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,USA,USA,Other,Always,0
0,100-500,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat difficult,Yes,Maybe,No,No,No,Yes,1,Some did,I was aware of some,Some did,Some did,"Yes, always",None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Neutral,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer|Support|DevOps/SysAdmin,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Physical health issues are not stigmatized.,Maybe,Mental health issues are stigmatized.,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,31.0,male,USA,USA,One-person shop|Front-end Developer,Always,1
0,1-5,1.0,Not eligible for coverage / N/A,No,No,Yes,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,My physical health is a personal issue. I would only discuss this with people after I have established that I can trust them.,No,I would only discuss my mental health issues with a person after I have established that I can trust them. I also want to show that it will not affect my job performance before I reveal any sort of personal issues.,"No, I don't think it would","No, I don't think they would",Somewhat open,No,Yes,No,Yes,Yes,1,Rarely,Often,28.0,female,USA,USA,Designer,Sometimes,0
0,>1000,0.0,I don't know,No,No,No,I don't know,Very difficult,Yes,No,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,I've seen people with physical health issues previously accommodated for,No,To avoid the stigma that it brings.,"Yes, I think it would","Yes, I think they would",Not open at all,"Yes, I observed",Yes,Yes,Yes,Yes,1,Not applicable to me,Not applicable to me,28.0,male,UK,UK,Supervisor/Team Lead|Back-end Developer|Front-end Developer,Never,1
0,26-100,1.0,Yes,Yes,No,I don't know,I don't know,Somewhat easy,Yes,Maybe,No,Maybe,No,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,Some did,"Yes, always",None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Maybe,Fear of discrimination,No,"afraid of stigma, being seen as less capable","Yes, I think it would",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,33.0,female,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),I don't know,Some did,I don't know,I don't know,Some of them,Some of my previous employers,I don't know,I don't know,None of them,Maybe,I don't know,Maybe,Haven't thought it through ,Maybe,"No, I don't think they would",Neutral,No,Yes,Yes,No,Yes,1,Not applicable to me,Not applicable to me,33.0,male,USA,USA,Designer,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,No,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Instead of concentrating on capabilities I believe they would have their mind go off on accommodations that would have to be made for me. It might even cloud any other thoughts on points of discussion. ,No,I would want to steer away from this as stress is the common denominator in all jobs and stress triggers panic and potentially depression. I've had employers bail and then the family who I was supporting as well. ,"Yes, it has","Yes, they do",Somewhat open,Maybe/Not sure,No,Yes,Yes,Yes,1,Sometimes,Often,55.5,male,USA,USA,Designer,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Depends on their character.,Maybe,Depends on the level of commitment I'm considering with such an interviewer.,Maybe,Maybe,Very open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Sometimes,Often,33.0,male,USA,USA,Executive Leadership,Sometimes,0
0,100-500,1.0,I don't know,No,No,I don't know,I don't know,Very difficult,Yes,Maybe,Maybe,Maybe,No,Yes,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat not open,"Yes, I observed",I don't know,Maybe,Maybe,Yes,1,Rarely,Rarely,37.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Always,1
0,6-25,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",None of them,"Yes, at all of my previous employers",Some of my previous employers,None did,"Yes, all of them",Maybe,"Depends, if it affects the productivity, no",No,"Bad experience before, I need to trust the new people to open myself","Yes, it has",Maybe,Very open,"Yes, I experienced",No,Yes,No,Yes,1,Sometimes,Sometimes,27.0,female,Germany,Germany,Back-end Developer|Front-end Developer,Always,1
0,>1000,1.0,No,No,No,No,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,"Yes, always",I don't know,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,Maybe,Privacy ,No,Medical privacy ,"Yes, I think it would","Yes, I think they would",Somewhat open,No,No,No,Maybe,No,0,Never,Never,39.0,male,USA,USA,Back-end Developer|Front-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,No,No,0,Rarely,Sometimes,50.0,male,Germany,Germany,DevOps/SysAdmin,Sometimes,1
0,>1000,0.0,Yes,Yes,I don't know,Yes,Yes,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,"I don't feel that it is their business and although they should not take it into consideration when hiring, let's be honest, they do.",No,"Same as physical: I don't feel that it is their business and although they should not take it into consideration when hiring, let's be honest, they do.",Maybe,Maybe,Somewhat open,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,34.0,female,USA,USA,Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,No,Stigma,"No, I don't think it would",Maybe,Neutral,"Yes, I experienced",No,No,Maybe,No,0,Often,Rarely,50.0,male,Germany,Germany,DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Sometimes,1
0,6-25,1.0,Not eligible for coverage / N/A,No,No,I don't know,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,No,There is still a stigma around mental health issues. The interviewer's perception of my skills and capability to perform the required tasks of the role may be altered because of this (even though I wouldn't have the job yet).,Maybe,Maybe,Neutral,"Yes, I observed",I don't know,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,31.0,female,other,other,Support|Other,Always,0
0,>1000,0.0,Yes,Yes,No,Yes,No,Very easy,Yes,No,No,No,No,No,1,Some did,I was aware of some,Some did,None did,No,"Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Id be afraid discussing any health issue at an interview would be used against me.,No,That's private information asked none of their business.,"Yes, I think it would","Yes, I think they would",Somewhat not open,"Yes, I observed",Yes,Maybe,Maybe,Yes,0,Rarely,Often,39.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Maybe,Maybe,No,No,No,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,"I've actually had to do this for an employer who required a drug test (I was on a prescription from a doctor for a medical condition and would have tested positive for steroids), so I disclosed up front so there weren't any surprises. In general, however, I wouldn't disclose unless it was necessary.",Maybe,"This would be more difficult because I think people do not understand and are more biased against mental health issues than physical ones, and I'd be concerned they'd find another pretext for not hiring me.",Maybe,Maybe,Somewhat not open,"Yes, I observed",Yes,Yes,No,Yes,1,Sometimes,Sometimes,46.0,male,USA,USA,Support|Back-end Developer|Front-end Developer,Sometimes,1
0,>1000,1.0,I don't know,No,No,I don't know,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Yes,Fear of discrimination,Yes,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,No,No,No,Maybe,No,0,Rarely,Sometimes,28.0,male,USA,USA,Front-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,I don't know,Yes,Neither easy nor difficult,Maybe,No,No,No,Yes,No,1,Some did,"No, I only became aware later",None did,Some did,No,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,employer have incentives (to pay less taxes) to hire ppl w/ disabilities in france,Maybe,not sure - you usually don't know the ppl interviewing you ,"Yes, I think it would",Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,32.0,male,other,other,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,I would bring it up only if I would need accommodations in order to do my job.,Maybe,I would bring it up only if I would need accommodations in order to do my job.,Maybe,Maybe,Somewhat open,Maybe/Not sure,No,Yes,Yes,Yes,1,Sometimes,Often,55.5,female,USA,USA,Front-end Developer|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,"because, fuck them, if they think it's an issue. It's their problem; not mine.",Yes,"See above. Also, it's analogous to bringing up my black wife or gay son.","No, I don't think it would",Maybe,Very open,No,Yes,Yes,Maybe,Yes,1,Sometimes,Never,37.0,male,USA,USA,Dev Evangelist/Advocate|One-person shop|Back-end Developer|Support|DevOps/SysAdmin,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Maybe,It would depend primarily on the issue and whether I deemed it relevant to the interview/position.,Maybe,"No, I don't think they would",Somewhat open,No,I don't know,Maybe,No,No,1,Rarely,Sometimes,41.0,female,USA,USA,Other|One-person shop,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",Yes,"There's little stigma around a physical health issue, and it could even become a personal talking point where it'd make a connection with someone.",No,"There's too little understanding or sympathy around mental health. I'd be labeled ""crazy,"" and that'd be the end of the interview.","Yes, I think it would","Yes, I think they would",Somewhat not open,No,I don't know,Yes,Yes,Yes,1,Rarely,Sometimes,38.0,male,USA,USA,Executive Leadership|Other,Sometimes,0
0,26-100,0.0,I don't know,I am not sure,Yes,No,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,No,1,"No, none did","No, I only became aware later",None did,None did,No,"Yes, all of them","Yes, all of them","No, at none of my previous employers","No, at none of my previous employers",None did,"Yes, all of them",Yes,"I believe in total transparency. If it's not appreciated, then I know the potential employer is not for me.",Yes,"I am a veteran with PTSD-related issues. I believe in total transparency. If it's not appreciated, then I know the potential employer is not for me.","Yes, it has","No, they do not",Somewhat open,"Yes, I experienced",No,Yes,Yes,Yes,1,Sometimes,Often,51.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,500-1000,0.0,I don't know,No,No,Yes,Yes,Neither easy nor difficult,No,No,Yes,Yes,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,Idk,Maybe,Idk,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,I don't know,Maybe,Maybe,No,1,Not applicable to me,Not applicable to me,29.0,male,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",I was aware of some,None did,Some did,"Yes, always",I don't know,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,None of them,Maybe,Depends on whether it might hinder or modify the way I work at the employer ,Maybe,Same reason as above. But less likely,Maybe,Maybe,Neutral,No,No,No,No,No,1,Rarely,Sometimes,37.0,male,other,Canada,One-person shop|Designer|Front-end Developer|Back-end Developer|Support|DevOps/SysAdmin|Other,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,No,Seems like it would work against me,No,Seems like it would work against me,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,Canada,Canada,Supervisor/Team Lead,Always,0
0,1-5,1.0,No,No,No,No,No,Very easy,No,No,Yes,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,None of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,"It's simple: They need to know who they're hiring.
",Yes,Again: They need to know who they're hiring.,"No, I don't think it would","No, I don't think they would",Neutral,No,Yes,Maybe,Maybe,No,0,Rarely,Rarely,32.0,male,other,other,Other|Dev Evangelist/Advocate|Support,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Very open,No,I don't know,Yes,Yes,Yes,1,Rarely,Often,31.0,male,other,other,Front-end Developer|Back-end Developer,Sometimes,1
0,>1000,0.0,Not eligible for coverage / N/A,No,No,Yes,I don't know,Neither easy nor difficult,Maybe,No,No,Maybe,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Yes,honesty,Maybe,fear,"Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,Yes,Maybe,No,No,1,Not applicable to me,Not applicable to me,52.0,male,other,other,Support|Designer|Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,I decide this based on my feelings towards my counterpart. If I feel that the interviewer is a kind human beeing I'll bring it up. Otherwise I don't.,Maybe,Same as before.,"No, I don't think it would",Maybe,Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Often,Often,31.0,male,other,other,Designer|One-person shop,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,"For short term and temporary contracts, there's no way you would get the job.",No,As before.,"No, I don't think it would","No, I don't think they would",Very open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,female,UK,UK,One-person shop,Always,0
0,>1000,0.0,Yes,Yes,No,I don't know,I don't know,Somewhat difficult,Yes,Maybe,Maybe,Maybe,No,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,"Yes, all of them","Yes, all of them",Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,"Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Sometimes,Often,35.0,male,USA,USA,Other|Dev Evangelist/Advocate|Support,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did",I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,No,I would not interview for a position where I believe my physical health may negatively impact my productivity.,No,I would not interview for a position where I believed my mental health would be an issue.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),Maybe/Not sure,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,29.0,male,USA,USA,One-person shop|Back-end Developer|DevOps/SysAdmin,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers",Some of my previous employers,None did,None of them,No,"If it's not a disability accommodation requirement, they don't need to know.",No,"Interviewers, especially HR people, tend to look for ways to eliminate candidates, rather than perform positive Selection Interviewing methods.",Maybe,Maybe,Somewhat not open,"Yes, I experienced",No,No,No,No,1,Not applicable to me,Not applicable to me,55.5,male,USA,USA,One-person shop,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,bias. a lack of understanding.,No,same reason as above.,Maybe,"Yes, they do",Somewhat open,"Yes, I observed",No,Yes,Yes,Yes,1,Rarely,Often,47.0,female,USA,USA,One-person shop|Other,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,"No, I only became aware later",Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,"Ensuring they have support for repetitive strain injury coverage, for example.",No,Respecting my right to privacy and avoiding any risk of discrimination.,Maybe,"No, I don't think they would",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Rarely,Often,43.0,male,other,other,DevOps/SysAdmin,Always,1
0,26-100,1.0,No,No,No,No,I don't know,Neither easy nor difficult,Maybe,No,Yes,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,I feel they might be biased,No,They will definitely be biased,"Yes, I think it would",Maybe,Somewhat not open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,other,other,Designer|Supervisor/Team Lead,Sometimes,0
0,6-25,0.0,I don't know,No,No,I don't know,I don't know,Somewhat difficult,Maybe,No,No,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,"I would bring it up if I required special equipment to do my job, or if I felt the need to explain how I can do my job despite the physical issue.",No,"I'm not comfortable enough explaining or discussing mental health. I feel that it may ""make it weird"" in the interview.","No, I don't think it would",Maybe,Not open at all,Maybe/Not sure,No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,27.0,male,USA,USA,DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Never,1
0,6-25,1.0,I don't know,No,No,Yes,Yes,I don't know,No,No,No,Yes,Yes,Yes,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,No,Because I don't trust insurance companies.,No,Because I try not to let it affect my work. ,"Yes, it has","No, I don't think they would",Somewhat not open,No,Yes,Yes,Yes,No,0,Not applicable to me,Often,40.0,female,USA,USA,Other,Always,0
0,500-1000,0.0,Not eligible for coverage / N/A,No,I don't know,I don't know,I don't know,Very difficult,Yes,Maybe,No,No,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,You don't want to give a potential employer a reason not to hire you.,No,"Same reason as before. Add to that the stigma associated with mental health. Not a good idea. I think employers, especially big companies, see mental health issues like depression as undesirable.","Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,32.0,male,other,other,Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,Sometimes,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"If it directly impacted my ability to work, I would bring it up.",Maybe,"I don't have a current issue, but I would want to know about health coverage and their general policies.",Maybe,"No, I don't think they would",Somewhat open,No,No,Maybe,Maybe,No,0,Not applicable to me,Sometimes,43.0,female,USA,USA,Front-end Developer|Support,Always,1
0,100-500,0.0,Yes,Yes,No,No,Yes,Somewhat difficult,Maybe,No,Maybe,Maybe,No,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always","Yes, all of them",None of them,Some of my previous employers,Some of my previous employers,None did,"Yes, all of them",No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I experienced",I don't know,Yes,Yes,Yes,0,Never,Often,28.0,female,Germany,Germany,Other,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,Fear it would impact negatively on getting the position.,No,Almost certainty it would impact negatively on getting the position.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,46.0,male,UK,UK,One-person shop|Front-end Developer|Back-end Developer|DevOps/SysAdmin,Always,1
0,>1000,0.0,No,Yes,No,No,I don't know,Somewhat easy,Maybe,No,No,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Trying to get a job,No,Trying to get a job,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,42.0,male,USA,USA,Front-end Developer,Sometimes,1
0,1-5,1.0,No,Yes,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Maybe,Yes,No,1,"Yes, they all did",I was aware of some,None did,Some did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,No,It's illegal for that to effect a job offer. ,No,It's illegal for that to effect a job offer,Maybe,Maybe,Somewhat open,No,Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,31.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer|Front-end Developer|One-person shop,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Fear of discrimination,No,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat not open,No,No,Yes,Yes,Yes,1,Rarely,Sometimes,37.0,female,USA,USA,Executive Leadership,Never,0
0,6-25,1.0,No,No,No,No,I don't know,Somewhat easy,No,No,No,No,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,I would fear that it would affect my chances of getting the job.,No,I am uncomfortable discussing mental health issues outside of my immediate family.,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,35.0,male,Canada,Canada,Designer,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Maybe,I don't want them to think I can't work,Maybe,"Same, I don't want them to think I can't work",Maybe,Maybe,Somewhat open,Maybe/Not sure,No,No,Maybe,No,1,Sometimes,Sometimes,30.0,female,USA,USA,One-person shop|Designer|Front-end Developer,Always,1
0,26-100,1.0,Not eligible for coverage / N/A,I am not sure,Yes,No,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,I'd need to know more about their own personal characteristics first.,No,Not unless I was aware how they felt about mental health.,"No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,35.0,male,Australia,Australia,DevOps/SysAdmin|Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,Yes,Yes,No,I don't know,Yes,Somewhat easy,Maybe,No,Maybe,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Only if relevant and would need accommodation.,Maybe,"Similarly to physical issues, only if I felt I needed accommodation.","Yes, I think it would",Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,24.0,male,USA,USA,Back-end Developer,Never,1
0,6-25,1.0,No,No,No,No,No,I don't know,Maybe,No,No,No,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,No,Stigma,Maybe,Maybe,Neutral,Maybe/Not sure,No,No,No,No,0,Sometimes,Sometimes,23.0,male,other,other,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,Maybe,"Dependant on how comfortable I felt speaking the interviewer(s), dependant if they have mentioned there is an avenue/approach they embrace to address physical health issues.",Maybe,"Dependant on how comfortable I felt speaking the interviewer(s), dependant if they have mentioned there is an avenue/approach they embrace to address mental health issues. Dependant on how my mental health is that day/week/ etc",Maybe,Maybe,Somewhat open,"Yes, I observed",Yes,Yes,Maybe,Yes,1,Sometimes,Often,39.0,female,other,UK,Front-end Developer,Always,1
0,6-25,1.0,No,No,Yes,No,Yes,Very easy,No,No,Maybe,Maybe,I don't know,No,1,Some did,"No, I only became aware later",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,"If I felt it would reduce my chance of getting the job and at the same time it would not impede my ability to *do* the job, I wouldn't mention it.",No,"Same reason, if I felt it would reduce my chance of getting the job and at the same time it would not impede my ability to *do* the job, I wouldn't mention it.",Maybe,"No, I don't think they would",Somewhat open,Maybe/Not sure,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,male,other,other,Executive Leadership,Always,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Very open,No,Yes,Yes,Yes,Yes,1,Often,Often,28.0,male,UK,UK,Front-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"if it were irrelevant to the job, I wouldn't",No,fear of discrimination,Maybe,Maybe,Somewhat open,"Yes, I observed",No,Maybe,No,No,0,Not applicable to me,Not applicable to me,30.0,male,UK,UK,Supervisor/Team Lead|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,No,Under UK law it's none of their business at that stage.,No,Same as above,"Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,No,Maybe,Maybe,No,0,Not applicable to me,Rarely,38.0,male,UK,UK,One-person shop,Always,0
0,26-100,1.0,I don't know,No,No,I don't know,I don't know,Very easy,No,No,No,Maybe,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",Some of my previous employers,I don't know,None of them,Yes,I'm an honest person.,Yes,I'm an honest person.,Maybe,Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,other,other,Back-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,I don't know,I don't know,I don't know,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),I don't know,None did,I don't know,I don't know,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",I don't know,None of them,Yes,"I think it's important in interviews to lay out exactly what you want on the table. If I had a health issue that needed accommodating, I'd want to ensure that was done.",Yes,Same reasoning as before.,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,UK,UK,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,None of them,None of them,"Yes, at all of my previous employers","Yes, at all of my previous employers",None did,"Yes, all of them",Yes,Because physical health is an accepted illness. Mental illness is considered to be an opt-out at times. ,No,Because it is not an accepted excuse,"Yes, I think it would","Yes, I think they would",Very open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,54.0,male,UK,UK,Other,Never,0
0,100-500,1.0,I don't know,No,I don't know,I don't know,I don't know,I don't know,No,No,Maybe,Maybe,I don't know,No,1,Some did,"No, I only became aware later",None did,Some did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Depends in the health issue,Maybe,Depends on the health issue,Maybe,Maybe,Neutral,No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,30.0,female,Germany,Germany,Other,Never,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,"No, at none of my previous employers",None did,Some of them,Maybe,Worried about potential discrimination associated with taking time off work,No,"Concerned that I would be viewed as unreliable, or a liability.",Maybe,"No, I don't think they would",Somewhat open,No,I don't know,No,No,No,1,Not applicable to me,Not applicable to me,32.0,female,UK,UK,Front-end Developer|Designer,Always,1
0,500-1000,1.0,I don't know,No,No,I don't know,I don't know,Very easy,No,No,No,Maybe,I don't know,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,I don't know,None of them,"No, at none of my previous employers",I don't know,I don't know,None of them,Yes,"Might effect work, and it seems accepted",No,It's embarassing,Maybe,Maybe,Not open at all,No,Yes,Maybe,Maybe,No,0,Not applicable to me,Not applicable to me,28.0,male,USA,USA,Front-end Developer,Sometimes,1
0,6-25,1.0,No,I am not sure,Yes,No,I don't know,Somewhat easy,No,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Fear of discrimination,Maybe,Stigma,"Yes, I think it would",Maybe,Somewhat open,No,I don't know,Yes,No,Yes,0,Sometimes,Sometimes,39.0,male,Germany,Germany,Supervisor/Team Lead|DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,1-5,1.0,No,Yes,No,No,No,Somewhat easy,Maybe,No,Maybe,Maybe,I don't know,No,1,Some did,"Yes, I was aware of all of them",Some did,Some did,"Yes, always",Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,"there's no stigma attached to physical health, it's an ailment.",Maybe,some people view mental illness as weakness. i don't want my employer prejudiced against me on account of my depression.,Maybe,Maybe,Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Rarely,Often,21.0,other,USA,USA,DevOps/SysAdmin|Back-end Developer|Front-end Developer|Designer,Always,1
0,6-25,1.0,Yes,Yes,Yes,Yes,No,Very easy,Maybe,No,Maybe,Yes,No,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,Yes,"I have a long-term chronic/constant headache and, well, it impedes my work from time to time. They need to be aware/okay with that.",Maybe,I don't suffer from any mental health issues that warrant discussion - so I'm not sure!,Maybe,Maybe,Somewhat open,No,Yes,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,Germany,Germany,Front-end Developer|Back-end Developer|Supervisor/Team Lead,Sometimes,1
0,>1000,1.0,I don't know,No,I don't know,I don't know,I don't know,Somewhat easy,Yes,Maybe,No,No,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,It seems like it would generally be useless information but may lend towards casual conversation. Like ice breaking.,No,The tech field seems highly reliant on mental capabilities. So I would fear that any issues disclosed here might negatively impact my standing (justified or not).,Maybe,Maybe,Somewhat open,No,No,No,Maybe,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Front-end Developer|Back-end Developer|Dev Evangelist/Advocate,Sometimes,1
0,26-100,1.0,Yes,I am not sure,No,No,Yes,Somewhat difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),Some did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,I think it would depend on the job requirements and the limitations my physical health would have on carrying out my duties.,No,"Unless I felt comfortable or knew how the employer felt about mental health, I most likely wouldn't feel ready to disclose that information that early on.",Maybe,"Yes, I think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,25.0,female,USA,USA,Other,Sometimes,0
0,6-25,1.0,Not eligible for coverage / N/A,I am not sure,No,I don't know,I don't know,Somewhat difficult,Maybe,Maybe,Yes,Maybe,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,I am not sure it would hinder my place in the job,Maybe,I am not sure it would hinder my place in the job,"Yes, I think it would","No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,26.0,male,UK,UK,Back-end Developer,Always,1
0,26-100,1.0,Yes,I am not sure,No,No,Yes,Somewhat easy,No,No,Maybe,Yes,I don't know,Yes,1,Some did,I was aware of some,Some did,Some did,Sometimes,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,I would likely perceive that as irrelevant to the interview process.,No,I would likely perceive that as irrelevant to the interview process.,Maybe,"No, I don't think they would",Very open,Maybe/Not sure,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Executive Leadership|Supervisor/Team Lead|DevOps/SysAdmin|Support|Back-end Developer|Front-end Developer,Never,1
0,500-1000,1.0,No,No,I don't know,No,I don't know,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,Fear of discrimination,No,Stigma,Maybe,"No, I don't think they would",Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,other,other,Back-end Developer,Never,1
0,100-500,1.0,I don't know,I am not sure,Yes,I don't know,Yes,Very easy,No,No,Yes,Yes,Yes,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,31.0,male,other,other,Front-end Developer|Back-end Developer|Supervisor/Team Lead|Executive Leadership,Always,1
0,100-500,1.0,I don't know,I am not sure,No,I don't know,I don't know,I don't know,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,Some did,"Yes, always",I don't know,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Maybe,"Most likely not, if I felt that it would harm my chances of getting a job.",No,Seems like it would only hurt chances of getting a job.,Maybe,"No, I don't think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,32.0,male,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,26-100,0.0,No,No,No,No,I don't know,Somewhat difficult,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",None did,None of them,No,I would only bring it up if it affected my ability to do my job,Maybe,If it affected my ability to do my job,"No, I don't think it would","No, I don't think they would",Neutral,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,45.0,female,UK,UK,Back-end Developer,Always,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,No,Not impacting my performance,No,Would not get the job,Maybe,"No, I don't think they would",Very open,No,Yes,Maybe,Maybe,No,0,Sometimes,Often,29.0,male,other,other,Front-end Developer|Back-end Developer|Supervisor/Team Lead,Sometimes,1
0,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,No,No,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Somewhat not open,Maybe/Not sure,Yes,Yes,Maybe,No,1,Sometimes,Sometimes,27.0,male,USA,USA,Front-end Developer|Back-end Developer,Always,1
0,26-100,1.0,Not eligible for coverage / N/A,No,I don't know,I don't know,I don't know,Very easy,No,No,No,Maybe,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,No,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Wouldn't want to risk job,No,As above,"Yes, I think it would",Maybe,Not open at all,No,I don't know,Yes,Yes,No,0,Not applicable to me,Sometimes,28.0,female,UK,UK,Front-end Developer,Always,1
0,500-1000,1.0,Yes,No,No,Yes,I don't know,Somewhat difficult,Maybe,No,Maybe,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"Some physical health has stigma attached, other does not.",Maybe,I cannot explain,"No, I don't think it would",Maybe,Somewhat not open,No,Yes,No,No,No,0,Rarely,Rarely,38.0,male,USA,USA,Back-end Developer|DevOps/SysAdmin,Always,1
0,500-1000,0.0,Yes,Yes,I don't know,Yes,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,"Yes, they all did","Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,If it would require minor accommodations that would not be perceived as overly onerous.,No,"The one time I did in the past, the interviewer clearly wrote me off immediately.
Now, I try to judge whether an organization would be a supportive environment without outing myself. It’s a lot easier to ask for accommodation after getting hired and demonstrating the ability to do the job than to give the employer a reason not to hire you in the first place.","Yes, it has","No, I don't think they would",Very open,"Yes, I observed",Yes,Yes,Yes,Yes,1,Sometimes,Often,38.0,male,USA,USA,Front-end Developer|Designer,Sometimes,1
0,>1000,1.0,I don't know,I am not sure,I don't know,I don't know,Yes,Somewhat easy,No,No,Maybe,Yes,Yes,No,1,Some did,I was aware of some,Some did,Some did,Sometimes,None of them,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,Fear of discrimination,Yes,Stigma,"No, I don't think it would","No, I don't think they would",Very open,No,Yes,Yes,No,Yes,1,Not applicable to me,Not applicable to me,34.0,male,other,other,Other,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,None of their bizniz,No,None of their binniz,"Yes, I think it would","Yes, I think they would",Somewhat open,No,I don't know,Yes,No,Yes,1,Never,Sometimes,36.0,male,Netherlands,Netherlands,Executive Leadership|Supervisor/Team Lead|Back-end Developer|Front-end Developer|Designer,Sometimes,1
0,6-25,1.0,I don't know,No,No,No,Yes,Very easy,No,No,Maybe,Yes,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear of discrimination,No,Stigma,Maybe,Maybe,Somewhat open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,23.0,male,other,other,Back-end Developer,Sometimes,1
0,100-500,0.0,Yes,I am not sure,No,No,I don't know,Neither easy nor difficult,Yes,Maybe,No,Maybe,No,Yes,1,Some did,I was aware of some,None did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,No,"Bias happens. I wouldn't want it to be a factor. However, I'm overweight, and I know it's been a factor in some interviews. Can't hide that. Even though that is the only thing I have wrong with me.",No,"If I was mentally unstable or unable to work regular hours, I could bias my own interview with this information.","Yes, it has",Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Maybe,Yes,1,Rarely,Often,40.0,female,USA,USA,Other,Sometimes,0
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,"Depends, if it affected the job then yes I would talk about it. ",Maybe,Depends if it affects job in anyway. ,Maybe,Maybe,Very open,No,No,Yes,Yes,Yes,1,Never,Sometimes,39.0,male,USA,USA,Back-end Developer,Always,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat difficult,Maybe,No,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,Not comfortable speaking about anything health related at work.,No,Don't want to set a bad precedent. ,Maybe,Maybe,Not open at all,No,Yes,Yes,Maybe,Yes,1,Rarely,Sometimes,28.0,male,USA,USA,Front-end Developer,Never,1
0,6-25,1.0,I don't know,No,No,I don't know,I don't know,I don't know,No,No,Yes,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Fear of discrimination,Maybe,Stigma,Maybe,"No, I don't think they would",Not applicable to me (I do not have a mental illness),No,No,No,No,No,0,Not applicable to me,Not applicable to me,33.0,male,USA,USA,Front-end Developer|Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,"Yes, at all of my previous employers",Some of my previous employers,I don't know,None of them,Maybe,If it affected my ability to perform the job or get/to from work. ,No,I feel like mental health is a private issue,Maybe,Maybe,Somewhat open,Maybe/Not sure,I don't know,Yes,Maybe,Yes,1,Sometimes,Sometimes,32.0,male,USA,USA,DevOps/SysAdmin,Always,1
0,>1000,0.0,Yes,No,Yes,Yes,Yes,Somewhat easy,Maybe,No,No,Maybe,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,I would rather have our conversation and my qualifications be the focus of an interview.,No,I would rather have our conversation and my qualifications be the focus of an interview.,Maybe,"No, I don't think they would",Somewhat not open,"Yes, I observed",Yes,Yes,Yes,Yes,0,Rarely,Sometimes,32.0,male,USA,USA,Other,Never,0
0,>1000,1.0,Yes,Yes,Yes,Yes,Yes,Very easy,No,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,Yes,Yes,Maybe,Yes,1,Sometimes,Often,27.0,male,USA,USA,Other|DevOps/SysAdmin|Back-end Developer,Never,1
0,100-500,1.0,No,No,No,No,I don't know,I don't know,Yes,No,No,No,I don't know,No,1,Some did,"Yes, I was aware of all of them",None did,Some did,"Yes, always","Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,If it affect my job performance they should know,Maybe,It is not treated with respect,"Yes, I think it would","Yes, I think they would",Very open,Maybe/Not sure,No,Yes,No,Yes,1,Never,Rarely,33.0,male,other,other,Front-end Developer|Back-end Developer,Never,1
0,100-500,0.0,I don't know,I am not sure,No,No,I don't know,Somewhat difficult,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,"No, at none of my previous employers",I don't know,None of them,Maybe,This is a personal matter and I don't feel that I have to mention it if it does not impact my ability to work. ,No,Most of employers would refuse to hire me in my opinion. ,"Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,Yes,No,No,No,0,Not applicable to me,Not applicable to me,34.0,male,other,other,Supervisor/Team Lead|DevOps/SysAdmin|Front-end Developer|Back-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,Some of them,No,Would lower chances of getting the job,No,would certainly mean no job,"Yes, I think it would","Yes, I think they would",Somewhat open,No,I don't know,Yes,Maybe,Yes,1,Rarely,Often,38.0,female,other,other,Supervisor/Team Lead,Sometimes,0
0,>1000,0.0,Yes,No,I don't know,I don't know,I don't know,I don't know,Maybe,Maybe,No,No,I don't know,No,1,I don't know,N/A (not currently aware),Some did,Some did,I don't know,Some of them,Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Does not seem relevant or helpful to bring up in interview.,No,Does not seem beneficial to bring up in interview.,"Yes, I think it would","Yes, I think they would",Not applicable to me (I do not have a mental illness),No,I don't know,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Never,1
0,26-100,1.0,Yes,I am not sure,Yes,Yes,Yes,Neither easy nor difficult,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,No,Other than perhaps asking about benefits that I would need/want it's not really their business unless it impacts my daily work.,No,"I would not want to risk possible discrimination. Even if it's illegal, it can bias opinions.",Maybe,Maybe,Somewhat open,No,No,Maybe,No,No,0,Not applicable to me,Not applicable to me,39.0,male,USA,USA,Other|Back-end Developer|Supervisor/Team Lead,Sometimes,1
0,>1000,0.0,Yes,I am not sure,No,Yes,Yes,Very easy,No,No,Maybe,Maybe,I don't know,No,1,"Yes, they all did",I was aware of some,None did,None did,"Yes, always",None of them,None of them,Some of my previous employers,"Yes, at all of my previous employers",Some did,None of them,No,It isn't something they should use to determine if I'm a good candidate for the job,No,It isn't a reason they should use to determine if I'm qualified for the job,Maybe,"No, I don't think they would",Somewhat open,"Yes, I observed",No,No,No,No,0,Not applicable to me,Not applicable to me,35.0,male,USA,USA,Supervisor/Team Lead,Never,0
0,100-500,0.0,I don't know,No,No,I don't know,Yes,Somewhat easy,No,No,Yes,Maybe,No,No,1,I don't know,"No, I only became aware later",None did,None did,Sometimes,Some of them,Some of them,"No, at none of my previous employers",I don't know,None did,None of them,Yes,If my potential employer needs to know (that it may affect my work) I feel its best to be honest so they know what they are getting if I joined their company,No,Not everyone regards mental health as realistic; its kind of an enigma as to treatment options,Maybe,Maybe,Somewhat open,"Yes, I observed",No,No,Yes,No,0,Never,Rarely,34.0,male,USA,USA,Back-end Developer,Sometimes,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them",Some did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Maybe,If I thought it would impact my chances at getting a job wouldn't bring it up unless asked.,No,Would feel it would negatively impact my chances. So only if it was asked.,"Yes, I think it would","Yes, I think they would",Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,44.0,female,USA,USA,Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead|Executive Leadership,Always,1
0,500-1000,0.0,Yes,I am not sure,No,No,I don't know,Very easy,No,No,Yes,Maybe,No,No,1,"Yes, they all did",I was aware of some,None did,None did,I don't know,Some of them,None of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,Maybe,"It seems like it would influence decisionmaking, even subconsciously.",No,"I'm fairly certain that would influence decisionmaking. There are so many ways to get away with discriminating on that basis, they can just chalk it up to 'cultural fit'","No, I don't think it would","No, I don't think they would",Very open,No,No,Yes,No,No,1,Sometimes,Often,42.0,male,USA,USA,Supervisor/Team Lead,Always,0
0,6-25,0.0,Yes,No,No,I don't know,I don't know,I don't know,Maybe,No,No,Maybe,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,I feel physical injuries are more acceptable now.,No,I would be afraid that I would be looked-over.,"Yes, I think it would",Maybe,Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,30.0,male,USA,USA,Front-end Developer|Designer,Always,1
0,26-100,0.0,Yes,No,No,No,No,Somewhat difficult,Yes,No,Maybe,Yes,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Yes,Physical stuff happens so there isn't a stigma attached to a physical health issue like there is with a mental health issue.,No,"Tech industry attitudes such as working long hours expected, peer arrogance, judgemental, etc. present a culture of intolerance, but over the past several years, I have noticed some improvement. Plus, I'm more of a private person.",Maybe,Maybe,Very open,No,Yes,Maybe,Maybe,No,0,Not applicable to me,Sometimes,55.0,male,USA,USA,Front-end Developer|Back-end Developer|DevOps/SysAdmin|Supervisor/Team Lead,Never,1
0,26-100,1.0,No,Yes,No,No,I don't know,Somewhat easy,Maybe,No,No,Maybe,I don't know,No,1,"Yes, they all did","Yes, I was aware of all of them","Yes, they all did","Yes, they all did","Yes, always","Yes, all of them",None of them,"No, at none of my previous employers","No, at none of my previous employers",Some did,Some of them,No,would be afraid not to put the best foot forward,No,believe it would be an automatic red flag,"Yes, I think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,Maybe,Maybe,Yes,1,Sometimes,Sometimes,46.0,male,USA,USA,Back-end Developer,Sometimes,1
0,100-500,0.0,Yes,Yes,No,No,Yes,Somewhat difficult,No,No,Yes,Yes,Yes,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,"Yes, always",None of them,None of them,"No, at none of my previous employers",Some of my previous employers,Some did,Some of them,Maybe,fear of losing out,No,feel it would negetivly impact my canidacy,"Yes, I think it would","No, they do not",Very open,No,Yes,Yes,Yes,Yes,1,Rarely,Sometimes,33.0,male,USA,USA,DevOps/SysAdmin|Back-end Developer,Sometimes,1
0,26-100,0.0,Yes,I am not sure,No,Yes,Yes,Neither easy nor difficult,Maybe,Maybe,Yes,Yes,I don't know,No,1,Some did,I was aware of some,Some did,Some did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,My employer would need to be aware of any limitations that could reasonably affect my work performance,Yes,My employer should be aware of any issues that could reasonably affect my performance,Maybe,"No, I don't think they would",Neutral,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Sometimes,30.0,male,USA,USA,Supervisor/Team Lead|Support|Back-end Developer,Sometimes,1
0,26-100,1.0,No,No,No,No,I don't know,Very easy,No,No,Yes,Yes,No,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,It is good to be open,Yes,It is good to be open,Maybe,Maybe,Somewhat open,No,Yes,Yes,Yes,Yes,1,Rarely,Often,30.0,male,UK,UK,Supervisor/Team Lead,Sometimes,0
0,>1000,1.0,Yes,Yes,No,Yes,I don't know,I don't know,Yes,Maybe,No,No,I don't know,Yes,1,I don't know,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,I don't know,Some of them,No,Discrimination and not hired,No,Discrimination and not hired,"Yes, it has",Maybe,Somewhat open,Maybe/Not sure,I don't know,Maybe,Maybe,No,1,Rarely,Often,31.0,female,USA,USA,Back-end Developer|Front-end Developer,Never,1
0,>1000,1.0,Yes,I am not sure,No,I don't know,Yes,Very easy,Maybe,No,Maybe,Yes,No,No,1,Some did,"No, I only became aware later",None did,Some did,"Yes, always",Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,Shouldn't generally be relevant,Maybe,Shouldn't generally be relevant,Maybe,Maybe,Somewhat open,No,No,Yes,Yes,Yes,1,Sometimes,Often,38.0,male,other,other,DevOps/SysAdmin,Sometimes,1
0,100-500,1.0,Yes,Yes,Yes,Yes,Yes,Somewhat difficult,Yes,No,Yes,Yes,No,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,No,Fear it would disadvantage the result,No,Same as physical - would be seen as a negative,"No, I don't think it would","Yes, I think they would",Somewhat open,"Yes, I observed",Yes,No,No,No,0,Never,Sometimes,30.0,female,UK,UK,Support|Back-end Developer,Sometimes,1
0,500-1000,1.0,Yes,Yes,Yes,Yes,I don't know,Somewhat easy,No,No,Yes,Yes,Yes,Yes,1,"Yes, they all did","Yes, I was aware of all of them",None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",None did,None of them,No,Nobody's business but my own.,No,Nobody's business but my own.,"No, I don't think it would","No, I don't think they would",Very open,"Yes, I experienced",Yes,Yes,Yes,Yes,1,Never,Often,32.0,male,USA,USA,Back-end Developer,Sometimes,1
0,>1000,0.0,No,No,No,No,I don't know,Neither easy nor difficult,Yes,No,No,No,I don't know,Yes,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,Some of them,None of them,Some of my previous employers,"No, at none of my previous employers",Some did,Some of them,No,Might prejudice hiring decision,No,Would definitely not be hired,"Yes, it has","Yes, I think they would",Somewhat open,"Yes, I observed",I don't know,Yes,Yes,Yes,1,Often,Often,32.0,male,UK,UK,Supervisor/Team Lead,Never,0
0,26-100,1.0,Yes,No,No,No,I don't know,Very difficult,Maybe,No,Maybe,Maybe,No,No,1,"No, none did","Yes, I was aware of all of them",None did,None did,I don't know,I don't know,Some of them,Some of my previous employers,Some of my previous employers,None did,Some of them,No,I don't feel like it is any of their business if it doesn't impact my ability to work.,Maybe,"As with physical issues, I don't feel like it is any of their business if it doesn't impact my ability to work. However, mental health issues don't always confine themselves to certain areas of your life, and can spill over. I feel like if I was in need of a job I would leave out mental issues because they could represent the tipping point between choosing me and another equally qualified candidate.","Yes, I think it would",Maybe,Somewhat open,Maybe/Not sure,Yes,Yes,Yes,Yes,1,Never,Sometimes,47.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,6-25,1.0,No,No,Yes,No,Yes,Very easy,No,No,Maybe,Yes,Yes,No,1,"No, none did",N/A (not currently aware),None did,None did,Sometimes,Some of them,Some of them,Some of my previous employers,Some of my previous employers,Some did,Some of them,Yes,"The employer needs to be aware of how to treat me equally and with respect. If they don't know my (theoretical) condition, they can't be expected to uphold any kind of legal requirements, or provide any help or support.",Maybe,"Depends on the issue. It may not be relevant or might not require their support. If it was pertinent, I probably would.",Maybe,Maybe,Somewhat not open,"Yes, I observed",I don't know,Maybe,Maybe,No,0,Never,Sometimes,39.0,male,UK,UK,DevOps/SysAdmin,Always,1
0,100-500,0.0,I don't know,I am not sure,No,No,I don't know,Very difficult,Yes,No,No,No,I don't know,No,1,I don't know,N/A (not currently aware),None did,None did,I don't know,"Yes, all of them",Some of them,"No, at none of my previous employers","No, at none of my previous employers",I don't know,None of them,No,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Not open at all,No,Yes,Yes,Yes,Yes,1,Sometimes,Often,35.0,male,USA,USA,Supervisor/Team Lead|Back-end Developer,Sometimes,1
0,100-500,1.0,Yes,Yes,No,No,I don't know,Very difficult,Yes,Yes,No,No,No,No,1,"Yes, they all did","Yes, I was aware of all of them",None did,"Yes, they all did","Yes, always",None of them,None of them,"No, at none of my previous employers","Yes, at all of my previous employers","Yes, they all did",None of them,No,Risk not getting position,No,Risk not getting position,"Yes, I think it would","Yes, I think they would",Somewhat open,Maybe/Not sure,No,Yes,Yes,Yes,1,Sometimes,Often,36.0,male,USA,USA,Supervisor/Team Lead,Sometimes,0
0,100-500,0.0,Yes,Yes,Yes,Yes,Yes,I don't know,Maybe,No,No,Maybe,Yes,No,0,Some did,N/A (not currently aware),None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,None did,None of them,Maybe,It depends on if the issue would effect my performance for the job they are hiring for.,Maybe,I think this also depends on if it would effect my ability to perform the job tasks.,"No, I don't think it would","No, I don't think they would",Somewhat not open,No,No,No,No,No,0,Not applicable to me,Not applicable to me,38.0,female,USA,USA,Front-end Developer,Always,1
0,100-500,1.0,I don't know,I am not sure,Yes,No,Yes,I don't know,Maybe,No,Maybe,No,I don't know,Yes,1,Some did,I was aware of some,None did,None did,I don't know,"Yes, all of them",Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,No,"I feel like it would make a negative impression during the interview or make for an awkward dynamic. At offer time, it would be acceptable.",No,I brought it up before a Google interview and they weren't willing to make allowances for it. Disclosing it doesn't seem to yield positive outcomes.,"Yes, I think it would",Maybe,Very open,"Yes, I observed",I don't know,Yes,Maybe,No,1,Sometimes,Often,30.0,male,USA,USA,Back-end Developer|Front-end Developer,Sometimes,1
0,26-100,1.0,I don't know,I am not sure,No,No,I don't know,Somewhat easy,Maybe,Maybe,Yes,Yes,No,No,1,Some did,I was aware of some,None did,None did,I don't know,Some of them,None of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Yes,Fear of discrimination,Maybe,Stigma,Maybe,Maybe,Somewhat open,No,Yes,Maybe,No,No,1,Not applicable to me,Not applicable to me,33.0,male,USA,USA,Back-end Developer,Sometimes,1
0,6-25,1.0,I don't know,I am not sure,I don't know,I don't know,I don't know,I don't know,Yes,No,Maybe,No,I don't know,No,1,"No, none did","No, I only became aware later",None did,None did,I don't know,Some of them,Some of them,Some of my previous employers,Some of my previous employers,I don't know,None of them,Maybe,Might affect if I get the job or not,Maybe,Same as above,Maybe,Maybe,Not open at all,No,Yes,Yes,Yes,No,0,Not applicable to me,Not applicable to me,22.0,male,USA,USA,Front-end Developer,Never,1
1,26-100,1.0,Yes,No,No,No,I don't know,Somewhat easy,Maybe,No,Maybe,Yes,I don't know,No,1,"No, none did",N/A (not currently aware),None did,None did,I don't know,I don't know,Some of them,"No, at none of my previous employers",I don't know,Some did,None of them,Maybe,Fear of discrimination,No,Stigma,"Yes, I think it would","Yes, I think they would",Neutral,Maybe/Not sure,No,Yes,Maybe,Yes,1,Not applicable to me,Sometimes,35.0,male,USA,USA,Back-end Developer,Always,1
0,26-100,0.0,I don't know,No,No,I don't know,I don't know,Neither easy nor difficult,Maybe,No,Maybe,Yes,I don't know,No,1,I don't know,"No, I only became aware later",None did,None did,I don't know,I don't know,None of them,Some of my previous employers,Some of my previous employers,Some did,None of them,Yes,I'm a diabetic.,Maybe,Stigma,"No, I don't think it would","No, I don't think they would",Somewhat open,No,I don't know,No,No,No,1,Never,Rarely,26.0,male,USA,USA,Support|DevOps/SysAdmin,Never,1