-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtransformation.json
More file actions
25978 lines (25978 loc) · 748 KB
/
transformation.json
File metadata and controls
25978 lines (25978 loc) · 748 KB
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
{
"FERT6": {
"questIds": {
"0": {
"conceptId": "619799524",
"concept": "Clomid (clomiphene)"
},
"1": {
"conceptId": "663814928",
"concept": "Gonadotropins, which are commonly referred to as \"\"injectables\"\" or \"\"injectable hormones\"\" (such as Follistim, Menopur, Bravelle, or Gonal-F)"
},
"2": {
"conceptId": "642004888",
"concept": "Danazol"
},
"3": {
"conceptId": "454641975",
"concept": "Danocrine"
},
"4": {
"conceptId": "256131117",
"concept": "hCG"
},
"5": {
"conceptId": "532607252",
"concept": "Milophene"
},
"6": {
"conceptId": "459188493",
"concept": "Lupron depot"
},
"7": {
"conceptId": "304927036",
"concept": "Nolvadex (tamoxifen)"
},
"8": {
"conceptId": "100181644",
"concept": "Pergonal"
},
"9": {
"conceptId": "372219003",
"concept": "Serophene"
},
"10": {
"conceptId": "743731422",
"concept": "Synarel nasal solution"
},
"55": {
"conceptId": "807835037",
"concept": "Other |__|"
},
"88": {
"conceptId": "535003378",
"concept": "None of the above"
},
"FERT_12_OTHER": {
"conceptId": "762700622",
"concept": "Other fertility medication: Please describe [text box]",
"isTextBox": true
}
},
"conceptId": "881200765",
"questionText": "Have you ever used any of these fertility medications? Select all that apply."
},
"GRID_CURWORKT10": {
"conceptId": "786253125",
"questionText": "Thinking about the one-way trip from [insert address from CURWORK1 – CURWORK3/this address] to your home on a usual workday, about how much time do you usually spend in each type of transportation?"
},
"CURWORKT10E": {
"questIds": {
"0": {
"conceptId": "428999623",
"concept": "15 minutes or less"
},
"1": {
"conceptId": "248303092",
"concept": "16 to 30 minutes"
},
"2": {
"conceptId": "998679771",
"concept": "31 to 59 minutes"
},
"3": {
"conceptId": "638092100",
"concept": "1 hour"
},
"4": {
"conceptId": "127455035",
"concept": "2 hours or more"
}
},
"questionText": "Commuter rail, subway, metro- Thinking about the one-way trip from [insert address from CURWORK1 – CURWORK3/this address] to your home on a usual workday, about how much time do you usually spend in each type of transportation?",
"conceptId": "100591237"
},
"HORMED1": {
"questIds": {
"0": {
"conceptId": "441493408",
"concept": "Combined oral contraceptive pills, commonly called \"\"the pill\"\" (combined means the pill includes both estrogen and progesterone/progestin)"
},
"1": {
"conceptId": "612012325",
"concept": "Progesterone-only or progestin-only contraceptive pills, commonly called \"\"the mini-pill\"\""
},
"2": {
"conceptId": "100752105",
"concept": "Norplant (inserted under the skin of your upper arm, lasts several years)"
},
"3": {
"conceptId": "207913198",
"concept": "Depo-provera (birth control shot given once every three months)"
},
"4": {
"conceptId": "863920008",
"concept": "Vaginal ring (such as Nuva Ring, inserted vaginally each month)"
},
"5": {
"conceptId": "787142499",
"concept": "Birth control patch (such as Ortho Evra, applied to the skin)"
},
"6": {
"conceptId": "205223932",
"concept": "Copper IUD (such as Paraguard intrauterine device)"
},
"7": {
"conceptId": "817131019",
"concept": "Hormonal IUD (such as Mirena intrauterine device)"
},
"55": {
"conceptId": "807835037",
"concept": "Other |__|"
},
"88": {
"conceptId": "535003378",
"concept": "None of the above"
},
"HORMED_9_OTHER": {
"conceptId": "684201296",
"concept": "Other hormonal medication: Please describe [text box]",
"isTextBox": true
}
},
"conceptId": "543780863",
"questionText": "Have you ever used any of these hormonal medications or devices? Select all that apply."
},
"HORMED3_7": {
"questIds": {
"0": {
"conceptId": "104430631",
"concept": "No"
},
"1": {
"conceptId": "353358909",
"concept": "Yes"
}
},
"questionText": "Are you currently using copper IUD?",
"conceptId": "100937200"
},
"EAMAR1": {
"questIds": {
"0": {
"conceptId": "151488193",
"concept": "10 or less"
},
"1": {
"conceptId": "805449318",
"concept": "11 to 49"
},
"2": {
"conceptId": "486319890",
"concept": "50 to 99"
},
"3": {
"conceptId": "132232896",
"concept": "100 or more"
}
},
"questionText": "How many days have you consumed marijuana in food or drinks in your life?",
"conceptId": "101170268"
},
"HOMEADD1_6": {
"questIds": {
"ST5": {
"conceptId": "101219440",
"concept": "5-Previous State/Province",
"isTextBox": true
},
"ZIP5": {
"conceptId": "127963610",
"concept": "5-Previous Zip code",
"isTextBox": true
},
"APT5": {
"conceptId": "164233037",
"concept": "5-Previous Apartment, suite, unit, building, etc.",
"isTextBox": true
},
"STNUM5": {
"conceptId": "306805272",
"concept": "5-Previous Street number",
"isTextBox": true
},
"CITY5": {
"conceptId": "418702418",
"concept": "5-Previous City",
"isTextBox": true
},
"FULLST5": {
"conceptId": "819844467",
"concept": "5-Previous Full Street name",
"isTextBox": true
},
"COUNTRY5": {
"conceptId": "882731998",
"concept": "5-Previous Country",
"isTextBox": true
}
},
"conceptId": "113930886",
"questionText": "Address 6- What is the full street address of the place you lived before? Please only include addresses where you have lived for at least two years."
},
"PAINREL3_1": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"PAINREL3_1A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "596961796",
"questionText": "Pills per day baby or low-dose aspirin (81 mg or less)"
},
"PAINREL3_2": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"PAINREL3_2A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "825189914",
"questionText": "Pills per day regular or extra strength aspirin"
},
"PAINREL3_3": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"PAINREL3_3A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "753416375",
"questionText": "Pills per day ibuprofen"
},
"PAINREL3_4": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"PAINREL3_4A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "646042915",
"questionText": "Pills per day acetaminophen"
},
"PAINREL3_5": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"PAINREL3_5A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "799338907",
"questionText": "Pills per day naproxen"
},
"PAINREL3_6": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"PAINREL3_6A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "893965588",
"questionText": "Pills per day Celebrex (celecoxib)"
},
"PAINREL3_7": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"PAINREL3_7A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "438682764",
"questionText": "Pills per day prescription pain relievers containing opioids"
},
"CHOLHTN3_1": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"CHOLHTN3_1A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "550092533",
"questionText": "Pills per day statins/cholesterol or lipid lowering drugs"
},
"CHOLHTN3_2": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"CHOLHTN3_2A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "901498441",
"questionText": "Pills per day anti-hypertensive medication/drugs used to treat hypertension (high blood pressure)"
},
"METFOR3_1": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"METFOR3_1A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "991622246",
"questionText": "Metformin milligrams"
},
"INSULIN3_1": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"INSULIN3_1A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "273218182",
"questionText": "On the days that you took insulin, about how many units did you take per day, on most days?"
},
"ACIDSUP3_1": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"ACIDSUP3_1A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "753610471",
"questionText": "Pills per day prescription proton pump inhibitors"
},
"ACIDSUP3_2": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"ACIDSUP3_2A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "803968511",
"questionText": "Pills per day over-the-counter proton pump inhibitors"
},
"ACIDSUP3_3": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"ACIDSUP3_3A": {
"conceptId": "101310722",
"concept": "# Pills per day",
"isTextBox": true
}
},
"conceptId": "618427836",
"questionText": "Pills per day over-the-counter H2 receptor blockers"
},
"CURWORK2": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"ZIP_FOLLOWUP": {
"conceptId": "101341673",
"concept": "Employer Zip code - Follow-Up",
"isTextBox": true
},
"COUNTRY_FOLLOWUP": {
"conceptId": "237204853",
"concept": "Employer Country - Follow-Up",
"isTextBox": true
},
"CITY_FOLLOWUP": {
"conceptId": "583500714",
"concept": "Employer City - Follow-Up",
"isTextBox": true
},
"ST_FOLLOWUP": {
"conceptId": "742105146",
"concept": "Employer State/Province - Follow-Up",
"isTextBox": true
}
},
"conceptId": "263588196",
"questionText": "Current work- Please provide the following information:"
},
"CHEW4": {
"questIds": {
"0": {
"conceptId": "419415087",
"concept": "No, not at all"
},
"1": {
"conceptId": "299561721",
"concept": "Yes, but rarely"
},
"2": {
"conceptId": "716761013",
"concept": "Yes, but some days"
},
"3": {
"conceptId": "804785430",
"concept": "Yes, every day"
}
},
"questionText": "Do you use chewing tobacco, snus, snuff, or dip now?",
"conceptId": "101710639"
},
"SEASADD2_5": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"SEACITY5_FOLLOWUP": {
"conceptId": "101804763",
"concept": "5-Seasonal City - Follow-up",
"isTextBox": true
},
"SEAST5_FOLLOWUP": {
"conceptId": "502068619",
"concept": "5-Seasonal State/Province - Follow-up",
"isTextBox": true
},
"SEACOUNTRY5_FOLLOWUP": {
"conceptId": "540340377",
"concept": "5-Seasonal Country - Follow-up",
"isTextBox": true
},
"SEAZIP5_FOLLOWUP": {
"conceptId": "787391994",
"concept": "5-Seasonal Zip code - Follow-up",
"isTextBox": true
}
},
"conceptId": "194944818",
"questionText": "Season Address 5-Please provide the following information:"
},
"OTHALC2": {
"questIds": {
"0": {
"conceptId": "968093023",
"concept": "1 serving"
},
"1": {
"conceptId": "545630587",
"concept": "2 servings"
},
"2": {
"conceptId": "526602834",
"concept": "3 servings"
},
"3": {
"conceptId": "905402667",
"concept": "4 servings"
},
"4": {
"conceptId": "900343645",
"concept": "5 servings"
},
"5": {
"conceptId": "554549266",
"concept": "6 or more servings"
}
},
"questionText": "Over the past 12 months, on the days that you drank other alcoholic beverages, how many servings of these beverages (such as wine coolers, \"\"hard soda,\"\" spiked seltzer (sparkling water), Smirnoff Ice, malt liquor, or pre-mixed cocktails) did you drink per day?",
"conceptId": "103045461"
},
"SEASWTR3_5": {
"questIds": {
"0": {
"conceptId": "123108471",
"concept": "Water from the tap or refrigerator that has not been filtered or treated"
},
"1": {
"conceptId": "463122075",
"concept": "Water from a refrigerator that has a water filter"
},
"2": {
"conceptId": "254061941",
"concept": "Water that was filtered using a filter like Brita or PUR in a pitcher or on a faucet"
},
"3": {
"conceptId": "404651070",
"concept": "Water that was filtered using reverse osmosis (under sink or whole house)"
},
"4": {
"conceptId": "354856090",
"concept": "Water that was filtered with another type of filter (under sink or whole house)"
},
"5": {
"conceptId": "311981718",
"concept": "Bottled water, including water from a store dispenser or delivered to your home"
},
"55": {
"conceptId": "807835037",
"concept": "Other |__|"
},
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"SEASWTR3_5_OTH": {
"conceptId": "103327434",
"concept": "Seasonal Address 5- What [is/was] the main source of water that you [drink/drank] at [insert address insert address from SEASADD1 – SEASADD3/ the 1st/2nd/3rd/etc. address you provided]? Please think about water you used to make drinks such as coffee and tea, and plain water that you [drink/drank]. Please describe [text box]",
"isTextBox": true
}
},
"conceptId": "953722451",
"questionText": "Seasonal Address 5- What [is/was] the main source of water that you [drink/drank] at [insert address insert address from SEASADD1 – SEASADD3/ the 1st/2nd/3rd/etc. address you provided]? Please think about water you used to make drinks such as coffee and tea, and plain water that you [drink/drank]."
},
"SEASADD2_6": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"SEAZIP6_FOLLOWUP": {
"conceptId": "103689435",
"concept": "6-Seasonal Zip code - Follow-up",
"isTextBox": true
},
"SEACOUNTRY6_FOLLOWUP": {
"conceptId": "659457234",
"concept": "6-Seasonal Country - Follow-up",
"isTextBox": true
},
"SEACITY6_FOLLOWUP": {
"conceptId": "686611963",
"concept": "6-Seasonal City - Follow-up",
"isTextBox": true
},
"SEAST6_FOLLOWUP": {
"conceptId": "900950849",
"concept": "6-Seasonal State/Province - Follow-up",
"isTextBox": true
}
},
"conceptId": "508587741",
"questionText": "Season Address 6-Please provide the following information:"
},
"HOMEWTR3_9": {
"questIds": {
"0": {
"conceptId": "123108471",
"concept": "Water from the tap or refrigerator that has not been filtered or treated"
},
"1": {
"conceptId": "463122075",
"concept": "Water from a refrigerator that has a water filter"
},
"2": {
"conceptId": "254061941",
"concept": "Water that was filtered using a filter like Brita or PUR in a pitcher or on a faucet"
},
"3": {
"conceptId": "404651070",
"concept": "Water that was filtered using reverse osmosis (under sink or whole house)"
},
"4": {
"conceptId": "354856090",
"concept": "Water that was filtered with another type of filter (under sink or whole house)"
},
"5": {
"conceptId": "311981718",
"concept": "Bottled water, including water from a store dispenser or delivered to your home"
},
"55": {
"conceptId": "807835037",
"concept": "Other |__|"
},
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"HOMEWTR3_9_OTH": {
"conceptId": "104666483",
"concept": "Address 9- What [is/was] the main source of water that you [drink/drank] at [insert address from HOMEADD1 – HOMEADD3/current address/the 2nd address you provided/etc.]? Please think about water you used to make drinks such as coffee and tea, and plain water that you [drink/drank]. Please describe [text box]",
"isTextBox": true
}
},
"conceptId": "740535024",
"questionText": "Address 9- What [is/was] the main source of water that you [drink/drank] at [insert address from HOMEADD1 – HOMEADD3/current address/the 2nd address you provided/etc.]? Please think about water you used to make drinks such as coffee and tea, and plain water that you [drink/drank]."
},
"HOMEADD3_1": {
"questIds": {
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"STRNAME1": {
"conceptId": "105043152",
"concept": "Current Full Street name #1",
"isTextBox": true
},
"STRTNAME1": {
"conceptId": "543135391",
"concept": "Current Full Street name #2",
"isTextBox": true
}
},
"conceptId": "804504024",
"questionText": "Please provide the cross streets of the intersection closest to this address:"
},
"SEASWTR1_4": {
"questIds": {
"0": {
"conceptId": "901693169",
"concept": "A public or municipal water supply"
},
"1": {
"conceptId": "519767819",
"concept": "A rural water system, community well, or spring serving at least 25 people or 15 households"
},
"2": {
"conceptId": "388690303",
"concept": "Private well or spring"
},
"55": {
"conceptId": "807835037",
"concept": "Other |__|"
},
"77": {
"conceptId": "178420302",
"concept": "Unavailable/Unknown"
},
"SEASWTR1_4_OTH": {
"conceptId": "132979567",
"concept": "Seasonal Address 4- What [is/was] the source of water to [insert address insert address from SEASADD1 – SEASADD3/ the 1st/2nd/3rd/etc. address you provided? Please describe [text box]",
"isTextBox": true
}
},
"questionText": "Seasonal Address 4- What [is/was] the source of water to [insert address insert address from SEASADD1 – SEASADD3/ the 1st/2nd/3rd/etc. address you provided?",
"conceptId": "105941645"
},
"GRID_SECSM": {
"conceptId": "252017075",
"questionText": "During each of these age ranges, how many people in your household smoked tobacco (such as cigarettes, cigars, or pipes) in your presence? Please do not include yourself."
},
"SECSMD": {
"questIds": {
"0": {
"conceptId": "503218834",
"concept": "None"
},
"1": {
"conceptId": "759356722",
"concept": "One"
},
"2": {
"conceptId": "668407984",
"concept": "Two"
},
"3": {
"conceptId": "448069154",
"concept": "Three"
},
"4": {
"conceptId": "485163252",
"concept": "Four"
},
"5": {
"conceptId": "160036380",
"concept": "Five or more"
}
},
"questionText": "During each of these age ranges, how many people in your household smoked tobacco (such as cigarettes, cigars, or pipes) in your presence? Please do not include yourself. Ages 15 to 17",
"conceptId": "106272739"
},
"CURSCHT4": {
"questIds": {
"0": {
"conceptId": "614087017",
"concept": "Yes, for 15 minutes or more"
},
"1": {
"conceptId": "746635399",
"concept": "Yes, for less than 15 minutes"
},
"2": {
"conceptId": "419415087",
"concept": "No, not at all"
}
},
"questionText": "Does your usual one-way trip to [insert address from CURSCH1 – CURSCH3/this address] from your home involve travel on a major city or town roadway? These usually have two or more lanes and stoplights. An example is pictured.",
"conceptId": "107050954"
},
"PROSREM": {
"questIds": {
"0": {
"conceptId": "524029283",
"concept": "I had surgery to remove remove part of my prostate"
},
"1": {
"conceptId": "500023550",
"concept": "I had surgery to remove remove my whole prostaste"
},
"88": {
"conceptId": "535003378",
"concept": "None of the above"
}
},
"questionText": "Which of these best describes the type of prostate removal surgery that you had?",
"conceptId": "107060069"
},
"CURSCHT9": {
"questIds": {
"0": {
"conceptId": "467242967",
"concept": "Car, van, or truck (includes carpools or van pools) commute from current school"
},
"1": {
"conceptId": "645051966",
"concept": "Taxicab (includes Uber, Lyft, or hired car) commute from current school"
},
"2": {
"conceptId": "756061540",
"concept": "Motorcycle commute from current school"
},
"3": {
"conceptId": "198883577",
"concept": "Bus or streetcar/trolley, light rail/trolley, light rail commute from current school"
},
"4": {
"conceptId": "634680635",
"concept": "Commuter rail, subway, metro commute from current school"
},
"5": {
"conceptId": "790657437",
"concept": "Bicycle commute from current school"
},
"6": {
"conceptId": "107428524",
"concept": "Walking commute from current school"
},
"55": {
"conceptId": "804918983",
"concept": "Other: Please describe commute from current school"
},
"CURSCHT9_OTH": {
"conceptId": "656067463",
"concept": "Other: Please describe, text box commute from current school",
"isTextBox": true
}
},
"conceptId": "345355061",
"questionText": "What type(s) of transportation do you use to get from [insert address from CURSCH1 – CURSCH3/this address] back home? Select all that apply."
},
"CURWORKT1": {
"questIds": {
"0": {
"conceptId": "158795242",
"concept": "Car, van, or truck (includes carpools or van pools) commute to work"
},
"1": {
"conceptId": "443596662",
"concept": "Taxicab (includes Uber, Lyft, or hired car) commute to work"
},
"2": {
"conceptId": "892894242",
"concept": "Motorcycle commute to work"
},
"3": {
"conceptId": "177539753",
"concept": "Bus or streetcar/trolley, light rail/trolley, light rail commute to work"
},
"4": {
"conceptId": "107659596",
"concept": "Commuter rail, subway, metro commute to work"
},
"5": {
"conceptId": "575883949",
"concept": "Bicycle commute to work"
},
"6": {
"conceptId": "248168118",
"concept": "Walking commute to work"
},
"55": {
"conceptId": "509121242",
"concept": "Other: Please describe commute to work"
},
"CURWORKT1_OTH": {
"conceptId": "902077989",
"concept": "Other: Please describe, text box commute to work",
"isTextBox": true
}
},
"conceptId": "635467479",
"questionText": "What type(s) of transportation do you use to get to [insert address from CURWORK1 – CURWORK3/this address] from home? Select all that apply."
},
"SEX2": {
"questIds": {
"0": {
"conceptId": "582784267",
"concept": "Penis"
},
"1": {
"conceptId": "751402477",
"concept": "Testes"
},
"2": {
"conceptId": "700100953",
"concept": "Prostate gland"
},
"3": {
"conceptId": "846483618",
"concept": "Vagina"
},
"4": {
"conceptId": "505282171",
"concept": "Cervix"
},
"5": {
"conceptId": "578416151",
"concept": "Uterus"
},
"6": {
"conceptId": "434651539",
"concept": "Ovaries"
},
"7": {
"conceptId": "108025529",
"concept": "Fallopian Tubes"
}
},
"conceptId": "750420077",
"questionText": "Please select the body parts that you were born with."
},
"TESTTHER2": {
"questIds": {
"0": {
"conceptId": "729863969",
"concept": "Gel/cream"
},
"1": {
"conceptId": "108104748",
"concept": "Injection"
},
"2": {
"conceptId": "717308596",
"concept": "Skin patch"
},
"3": {
"conceptId": "746788766",
"concept": "Pills"
},
"4": {
"conceptId": "158214723",
"concept": "Gum or inner cheek patch"
},
"5": {
"conceptId": "658810736",
"concept": "Slow release implant (testosterone pellets)"
}
},
"conceptId": "946849196",
"questionText": "Which forms of testosterone medication(s) have you taken? Select all that apply."
},
"PREWORK1": {
"questIds": {
"PREWORKST": {
"conceptId": "108530997",
"concept": "Previous Employer State/Province",
"isTextBox": true
},
"PREWORKZIP": {
"conceptId": "110852652",
"concept": "Previous Employer Zip code",
"isTextBox": true
},
"PREWORKAPT": {
"conceptId": "371588177",
"concept": "Previous Employer Apartment, suite, unit, building, etc.",
"isTextBox": true
},
"PREWORKEMP": {
"conceptId": "452053599",
"concept": "Previous Employer Name of employer/company",
"isTextBox": true
},
"PREWORKFULLST": {
"conceptId": "855583262",
"concept": "Previous Employer Full Street name",
"isTextBox": true
},
"PREWORKCOUNTRY": {
"conceptId": "867109611",
"concept": "Previous Employer Country",
"isTextBox": true
},
"PREWORKSTNUM": {
"conceptId": "903896611",
"concept": "Previous Employer Street number",
"isTextBox": true
},
"PREWORKCITY": {
"conceptId": "962868433",
"concept": "Previous Employer City",
"isTextBox": true
}
},
"conceptId": "992180692",
"questionText": "Thinking about the job you had the longest in the past 20 years, what was the name and the street address of the workplace you commuted to most often?"
},
"GRID_PREWORKT2": {
"conceptId": "968388901",
"questionText": "Thinking about the one-way trip from your home to [insert address from PREWORK1 – PREWORK3/this address] on a usual workday, about how much time did you usually spend in each type of transportation?"
},
"PREWORKT2F": {
"questIds": {
"0": {
"conceptId": "428999623",
"concept": "15 minutes or less"
},
"1": {
"conceptId": "248303092",
"concept": "16 to 30 minutes"
},
"2": {
"conceptId": "998679771",
"concept": "31 to 59 minutes"
},
"3": {