-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaggregate.json
23935 lines (23935 loc) · 596 KB
/
aggregate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"100181644": {
"Variable Label": "Pergonal",
"Variable Name": [
"SrvMRE_Pergonal_v1r0"
]
},
"100591237": {
"Variable Label": "Time, Commuter rail, subway, metro commute from current work",
"Variable Name": [
"SrvLAW_CurWorkT10E_v1r0"
]
},
"100618603": {
"Variable Label": "Other - HC",
"Variable Name": [
"BioKit_OthPkgCond_v1r0"
]
},
"100752105": {
"Variable Label": "Norplant Arm Insert",
"Variable Name": [
"SrvMRE_Norplant_v1r0"
]
},
"100767870": {
"Variable Label": "All Base Surv Complete",
"Variable Name": [
"SMMet_BaseSrvCompl_v1r0"
]
},
"100937200": {
"Variable Label": "Current Use - Copper IUD",
"Variable Name": [
"SrvMRE_CurrCopperIUD_v1r0"
]
},
"101144925": {
"Variable Name": "In total, how many months or years have you used hormonal IUD?"
},
"101170268": {
"Variable Label": "Days consumed marijuana in food or drinks in life",
"Variable Name": [
"SrvSAS_EdiblesDays_v2r0"
]
},
"101170406": {
"Variable Label": "Base EMR Push",
"Variable Name": [
"EMRBl_Push_v1r0"
]
},
"101178950": {
"Variable Name": "password"
},
"101219440": {
"Variable Label": "State/Province",
"Variable Name": [
"SrvLAW_State5_v1r0"
]
},
"101310722": {
"Variable Label": "Pills/Day Baby/Low-Dose Aspirin",
"Variable Name": [
"SrvMRE_LAspirinPill_v1r0",
"SrvMRE_REAspirinPill_v1r0",
"SrvMRE_IbuprofenPill_v1r0",
"SrvMRE_AcetPill_v1r0",
"SrvMRE_NaproxenPill_v1r0",
"SrvMRE_CelebrexPill_v1r0",
"SrvMRE_OpioidsPill_v1r0",
"SrvMRE_StatinsPills_v1r0",
"SrvMRE_AntiHypPills_v1r0",
"SrvMRE_MetforminMg_v1r0",
"SrvMRE_InsulinUnits_v1r0",
"SrvMRE_PPPresPill_v1r0",
"SrvMRE_PPOCPill_v1r0",
"SrvMRE_H2RecBlocOCPill_v1r0"
]
},
"101341673": {
"Variable Label": "Zip code",
"Variable Name": [
"SrvLAW_ZipFU_v1r0"
]
},
"101710639": {
"Variable Label": "Use chewing tobacco, snus, snuff, or dip now",
"Variable Name": [
"SrvSAS_UseCTNow_v1r0"
]
},
"101763809": {
"Variable Label": "Ref 2024 Connect Exp Srv",
"Variable Name": [
"HdRef_2024ConExpSrv_v1r0"
]
},
"101804763": {
"Variable Label": "City",
"Variable Name": [
"SrvLAW_SeaCity5FU_v1r0"
]
},
"101837333": {
"Variable Label": "Why Connect - NCI reputation",
"Variable Name": [
"SrvPES_NCIREP_v1r0"
]
},
"101850740": {
"Variable Label": "Bus Time Cur Work Post Pan",
"Variable Name": [
"SrvLAW_WkPstPanBusT_v1r0"
]
},
"101862879": {
"Variable Label": "SE t-score Fatigue, PROMIS-29",
"Variable Name": [
"SrvQOL_3moSEFatigue_v1r0"
]
},
"102445389": {
"Variable Name": "1 to 9 times"
},
"102695484": {
"Variable Label": "SST1 Dev - Centrifuge - Didn't Clot 30 Min",
"Variable Name": [
"BioCol_Dev_v1r0_ClotSSST1",
"BioCol_Dev_v1r0_ClotSSST2",
"BioCol_Dev_v1r0_ClotS_SST3",
"BioCol_Dev_v1r0_ClotSSST4",
"BioCol_Dev_v1r0_ClotSSST5"
]
},
"103045461": {
"Variable Label": "How many servings other alcoholic beverages, past 12 months",
"Variable Name": [
"SrvSAS_OthAlcServ12Mo_v1r0"
]
},
"103188138": {
"Variable Label": "Do Not Know 10-Seasonal Cross",
"Variable Name": [
"SrvLAW_Sea10CrDontKnow_v2r0"
]
},
"103209024": {
"Variable Name": "Home"
},
"103327434": {
"Variable Label": "Other: Please describe",
"Variable Name": [
"SrvLAW_SeasWtr3_5_Oth_v1r0"
]
},
"103397024": {
"Variable Name": "How old were you when a doctor or other health professional first told you that you have or had Trichomoniasis?"
},
"103409401": {
"Variable Name": "4 days per week"
},
"103565678": {
"Variable Name": "Mild hair loss on the sides of the forehead, but not as far back as the ears, and mild loss from the center of the forehead. Also, hair thinning on the top (crown) of the head."
},
"103566006": {
"Variable Name": "What kind of cigar, cigarillo, or little filtered cigar [do/did] you usually use? Select all that apply."
},
"103689435": {
"Variable Label": "Zip code",
"Variable Name": [
"SrvLAW_SeaZip6FU_v1r0"
]
},
"104053459": {
"Variable Name": "Not Revoked"
},
"104107327": {
"Variable Label": "Age first consumed marijuana in food or drinks on a regular basis, Never consumed",
"Variable Name": [
"SrvSAS_EdiblesNever_v2r1"
]
},
"104278817": {
"Variable Label": "First Name",
"Variable Name": [
"HdWd_FnameDD_v1r0"
]
},
"104430631": {
"Variable Label": "No permanent teeth lost",
"Variable Name": [
"SrvMtW_NOPERMTTHLOST_v1r0",
"SrvMtW_DENTURES_v1r0",
"SrvMtW_NOPERMTTHLOST_v1r0",
"SrvMtW_DENTURES_v1r0"
]
},
"104593854": {
"Variable Name": "Not meeting"
},
"104666483": {
"Variable Label": "Other: Please describe",
"Variable Name": [
"SrvLAW_HomeWtr3_9_Oth_v1r0"
]
},
"104676242": {
"Variable Label": "Types of alcoholic beverages - Wine",
"Variable Name": [
"SrvSAS_Wine17_v1r0",
"SrvSAS_Wine1824_v1r0",
"SrvSAS_Wine2529_v1r0",
"SrvSAS_Wine3039_v1r0",
"SrvSAS_Wine4049_v1r0",
"SrvSAS_Wine5059_v1r0",
"SrvSAS_Wine6069_v1r0",
"SrvSAS_Wine70_v1r0"
]
},
"104842019": {
"Variable Label": "Number of endometrial biopsies",
"Variable Name": [
"SrvScr_ENDOBIOP2_v1r0"
]
},
"104913069": {
"Variable Name": "Research- Finalization and shipping"
},
"105043152": {
"Variable Label": "Full Street name #1",
"Variable Name": [
"SrvLAW_StrName1_v1r0"
]
},
"105063268": {
"Variable Label": "Fatigue - feeling run-down",
"Variable Name": [
"SrvQoL_Fatigue7D3_v1r0"
]
},
"105727261": {
"Variable Name": "Three (triplets)"
},
"105891443": {
"Variable Label": "Temp Probe In Box",
"Variable Name": [
"BioPack_TempProbe_v1r0"
]
},
"105941645": {
"Variable Label": "Primary water source",
"Variable Name": [
"SrvLAW_SeaAdd4PrWater_v1r0"
]
},
"106010694": {
"Variable Label": "Last Blood Transfusion Yr",
"Variable Name": [
"SrvBOH_LBloodTransYr_v1r0"
]
},
"106272739": {
"Variable Label": "Ages 15 to 17",
"Variable Name": [
"SrvSAS_NumSmoke1517_v1r0"
]
},
"107050954": {
"Variable Label": "Major road, commute to current school",
"Variable Name": [
"SrvLAW_CurSchT4_v1r0"
]
},
"107060069": {
"Variable Label": "Prostate Removal Surg",
"Variable Name": [
"SrvBOH_ProsRemSurg_v1r0"
]
},
"107428524": {
"Variable Label": "Walking commute from current school",
"Variable Name": [
"SrvLAW_CurSchWalk6_v1r0"
]
},
"107659596": {
"Variable Label": "Commuter rail, subway, metro commute to current work",
"Variable Name": [
"SrvLAW_CurWorkRail_v1r0"
]
},
"107714591": {
"Variable Name": "5 days"
},
"108025529": {
"Variable Label": "Fallopian Tubes",
"Variable Name": [
"SrvBOH_FallTube_v1r0",
"SrvScr_FallTube_v1r0"
]
},
"108082847": {
"Variable Label": "Recipient Unsub From Email List - Status",
"Variable Name": [
"CTSG_UnsubStatus_v1r0"
]
},
"108104748": {
"Variable Label": "Injection",
"Variable Name": [
"SrvMRE_TTInjection_v1r0"
]
},
"108389123": {
"Variable Label": "Long COVID Post-exercise feeling duration",
"Variable Name": [
"SrvBlU_COV20A13_v1r0",
"SrvBlU_COV20A13_v1r0",
"SrvCov_COV20A13_v1r0"
]
},
"108417657": {
"Variable Label": "Number of proctoscopies",
"Variable Name": [
"SrvScr_PROCT2_v1r0"
]
},
"108427288": {
"Variable Label": "Status of Msg Received & Prep for SG Delivery",
"Variable Name": [
"CTSG_ProcessedStat_v1r0"
]
},
"108530997": {
"Variable Label": "State/Province",
"Variable Name": [
"SrvLAW_PreWorkState_v1r0"
]
},
"108733102": {
"Variable Label": "Pneumonia",
"Variable Name": [
"SrvCov_COV10_v1r0"
]
},
"108849491": {
"Variable Label": "MyConnect technical problems - share more",
"Variable Name": [
"SrvPES_TPROB2TB_v1r0"
]
},
"109223043": {
"Variable Label": "Long COVID Troubling remembering things duration",
"Variable Name": [
"SrvBlU_COV20A3_v1r0",
"SrvBlU_COV20A3_v1r0",
"SrvCov_COV20A3_v1r0"
]
},
"109431893": {
"Variable Label": "Time, Bicycle commute to past work",
"Variable Name": [
"SrvLAW_PreWorkTmBike_v1r0"
]
},
"109544008": {
"Variable Label": "First Used Hair Med Age",
"Variable Name": [
"SrvBOH_HairMedAgeF_v1r1"
]
},
"109876967": {
"Variable Label": "Metformin Mg, Don't Know",
"Variable Name": [
"SrvMRE_MetforminMgDK_v2r0"
]
},
"109972911": {
"Variable Name": "I had surgery to remove both ovaries"
},
"109991481": {
"Variable Label": "State/Province",
"Variable Name": [
"SrvLAW_SeaState2_v1r0"
]
},
"110092955": {
"Variable Name": "The same day"
},
"110349197": {
"Variable Label": "BL Polyacc ID - Ur",
"Variable Name": [
"BioClin_PolyUrineIDBL_v1r0",
"BioClin_PolyUrineIDF1_v1r0",
"BioClin_PolyUrineIDF2_v1r0",
"BioClin_PolyUrineIDF3_v1r0"
]
},
"110511396": {
"Variable Name": "Cancer Site Specific Questionnaire DRAFT QUESTION TYPE"
},
"110516520": {
"Variable Label": "Full Street name #2",
"Variable Name": [
"SrvLAW_SeaStrtName7_v1r0"
]
},
"110652436": {
"Variable Name": "How old were you when a doctor or other health professional first told you that you have had a stroke?"
},
"110852652": {
"Variable Label": "Zip code",
"Variable Name": [
"SrvLAW_PreWorkZip_v1r0"
]
},
"110872086": {
"Variable Label": "Other Long COVID Symptom: Please Describe",
"Variable Name": [
"SrvBlU_COV19C6A_v1r0",
"SrvBlU_COV19C6A_v1r0",
"SrvCov_COV19C6A_v2r0"
]
},
"111082535": {
"Variable Label": "IVF",
"Variable Name": [
"SrvMRE_IVF_v1r0"
]
},
"111235606": {
"Variable Label": "Testosterone Therapy",
"Variable Name": [
"SrvMRE_TestosTherapy_v1r0"
]
},
"111271067": {
"Variable Label": "Age Last Use - Oth Progestin/Progesterone-Only Med",
"Variable Name": [
"SrvMRE_AgeOthProgL_v1r0"
]
},
"111275683": {
"Variable Label": "Full Street name",
"Variable Name": [
"SrvLAW_FullSt1_v1r0"
]
},
"111520945": {
"Variable Name": "Not at all"
},
"111580947": {
"Variable Label": "Number of mammograms",
"Variable Name": [
"SrvScr_MAMMO2_v1r0"
]
},
"111959410": {
"Variable Name": "Requested but not signed"
},
"112024853": {
"Variable Label": "Ever Took Metformin",
"Variable Name": [
"SrvMRE_Metformin_v1r0"
]
},
"112151599": {
"Variable Label": "Menstrual Period within last 60 days",
"Variable Name": [
"SrvBlU_MENST60_v2r0",
"SrvBlU_MENST60_v2r0"
]
},
"113064256": {
"Variable Name": "I have had at least one menstrual period in the past 12 months but the frequency of my period changed (such as it stopped, became irregular, or difficult to predict)"
},
"113343940": {
"Variable Label": "First full body skin examination",
"Variable Name": [
"SrvScr_SKIN2_v1r0"
]
},
"113352592": {
"Variable Label": "City",
"Variable Name": [
"SrvLAW_SeaCity3_v1r0"
]
},
"113557709": {
"Variable Label": "Deep private well",
"Variable Name": [
"SrvLAW_DeepPrivWell6_v1r0"
]
},
"113579866": {
"Variable Label": "Suspend Contact Until D/T",
"Variable Name": [
"HdWd_Suspend_v1r0"
]
},
"113681507": {
"Variable Label": "# Yrs Baby/L-D Aspirin",
"Variable Name": [
"SrvMRE_LAspirinYr_v1r0"
]
},
"113771607": {
"Variable Name": "I had surgery to remove one kidney"
},
"113838601": {
"Variable Name": "AstraZeneca"
},
"113930886": {
"Variable Name": "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."
},
"114227122": {
"Variable Label": "RCA vital status",
"Variable Name": [
"RCAOcc_ManualVitalStat_v1r0"
]
},
"114280729": {
"Variable Name": "How long did you experience the following symptoms?"
},
"114314839": {
"Variable Name": "How tall are you with your shoes off?"
},
"114529380": {
"Variable Label": "Curr Employement",
"Variable Name": [
"SrvBOH_EmplStatus_v1r0"
]
},
"115195973": {
"Variable Label": "Full Street name #1",
"Variable Name": [
"SrvLAW_SeaStrName6_v1r0"
]
},
"115422925": {
"Variable Label": "Last 12 Mons - Caring For Kids/Adults",
"Variable Name": [
"SrvMRE_CaringForOthers_v1r0"
]
},
"115480943": {
"Variable Label": "Cognitive function - work harder to keep track of activities",
"Variable Name": [
"SrvQoL_CogFunct7D3_v1r0"
]
},
"115504049": {
"Variable Label": "Last time screened for cervical cancer",
"Variable Name": [
"SrvScr_CERVIDK3_v1r0"
]
},
"115616118": {
"Variable Name": "Native Hawaiian or other Pacific Islander - Which of these describes you best? Select all that apply."
},
"115909186": {
"Variable Label": "Use chewing tobacco, snus, snuff, or dip every day, months",
"Variable Name": [
"SrvSAS_UseCTED_v1r0"
]
},
"115959973": {
"Variable Label": "Pixel used",
"Variable Name": [
"SrvPES_TABLET2D_v1r0"
]
},
"116014097": {
"Variable Label": "Age stopped using electronic marijuana delivery devices every day",
"Variable Name": [
"SrvSAS_AgeStopEMJDev_v2r1"
]
},
"116032363": {
"Variable Name": "Post Pan Work - Please provide the cross streets of the intersection closest to this address: - SOURCE"
},
"116065851": {
"Variable Name": "Child 1- How old was your [CHILD INITIALS OR NICKNAME/YOUR CHILD] when they were first told by a doctor or other health professional that they have or had Uterine (endometrial) cancer?"
},
"116080663": {
"Variable Name": "Age started smoking cannabis on a regular basis - SOURCE"
},
"116442173": {
"Variable Label": "Bus or streetcar/trolley, light rail/trolley, light rail commute to past work",
"Variable Name": [
"SrvLAW_PreWorkBus_v1r0"
]
},
"116510981": {
"Variable Label": "Age first used electronic marijuana delivery devices",
"Variable Name": [
"SrvSAS_AgeUseEMJDevF_v2r1"
]
},
"116546181": {
"Variable Name": "How old were you when you had the first surgery for removal of one breast? - CSH"
},
"116882225": {
"Variable Label": "Time, Motorcycle commute to past work",
"Variable Name": [
"SrvLAW_PreWorkTmMoto_v1r0"
]
},
"117044491": {
"Variable Name": "Payment"
},
"117249500": {
"Variable Label": "Derived Age",
"Variable Name": [
"RcrtUP_Age_v1r0"
]
},
"117258272": {
"Variable Name": "I cannot find the survey"
},
"117544868": {
"Variable Label": "Full Street name #1",
"Variable Name": [
"SrvLAW_SeaStrName4_v1r0"
]
},
"117703279": {
"Variable Label": "Street number",
"Variable Name": [
"SrvLAW_SeaStNum10_v1r0"
]
},
"117821961": {
"Variable Label": "Do Not Know 9-Previous Cross",
"Variable Name": [
"SrvLAW_Prev9CrDontKnow_v2r0"
]
},
"117943804": {
"Variable Label": "Do Not Know 3-Seasonal Cross",
"Variable Name": [
"SrvLAW_Seas3CrDontKnow_v2r0"
]
},
"118061122": {
"Variable Label": "Past Job Title",
"Variable Name": [
"SrvBOH_PastJobTitle_v2r0"
]
},
"118191655": {
"Variable Name": "Didn't smoke a hookah or water pipe during this time"
},
"118237712": {
"Variable Label": "Age Last Use - Depo-Provera",
"Variable Name": [
"SrvMRE_AgeDepoUsedL_v1r0"
]
},
"118738120": {
"Variable Label": "Primary water source",
"Variable Name": [
"SrvLAW_SeaAdd6PrWater_v1r0"
]
},
"118789503": {
"Variable Label": "Liposuction",
"Variable Name": [
"SrvBOH_Liposuction_v1r0",
"SrvScr_Liposuction_v1r0"
]
},
"119257304": {
"Variable Label": "How many days use THC concentrates via dabbing, age last used",
"Variable Name": [
"SrvSAS_AgeLastTHCDays_v2r1"
]
},
"119378795": {
"Variable Label": "Age stopped using a tobacco pipe every day",
"Variable Name": [
"SrvSAS_TobPipeAgeStop_v1r0"
]
},
"119449326": {
"Variable Label": "D/T Data Dest Signed",
"Variable Name": [
"HdWd_DateDatadestsign_v1r0"
]
},
"119483547": {
"Variable Label": "Street number",
"Variable Name": [
"SrvLAW_SeaStNum3_v1r0"
]
},
"119632587": {
"Variable Label": "Algerian",
"Variable Name": [
"SrvBOH_Algerian_v1r0"
]
},
"119643471": {
"Variable Label": "SF Reported Race",
"Variable Name": [
"RcrtSI_SHRace_v1r0"
]
},
"119809731": {
"Variable Name": "3 to 5 times"
},
"120016082": {
"Variable Label": "Irregular Pds (Cycle Varies > 7-9 Days)",
"Variable Name": [
"SrvMRE_IrregPeriod_v1r0"
]
},
"120045322": {
"Variable Name": "21 to 35"
},
"120264574": {
"Variable Name": "South Loop"
},
"120485458": {
"Variable Label": "Yr Last Worked Shift Work",
"Variable Name": [
"SrvMRE_ShiftLastYear_v1r0"
]
},
"120942783": {
"Variable Label": "Deep private well",
"Variable Name": [
"SrvLAW_SeaAdd4DPWell_v1r0"
]
},
"121031661": {
"Variable Label": "D/T Recipient Unsub From Email List",
"Variable Name": [
"CTSG_UnsubDT_v1r0"
]
},
"121149986": {
"Variable Label": "Crushed",
"Variable Name": [
"BioBPTL_PkgCrushed_v1r0"
]
},
"121430614": {
"Variable Label": "Unreliable Internet/Device",
"Variable Name": [
"HdRef_NoInternet_v1r0"
]
},
"121454001": {
"Variable Name": "Revoked and signed"
},
"121490150": {
"Variable Name": "What is the full street address of the place where you live now?"
},
"121502359": {
"Variable Name": "Father - How old was your Father when they were first told by a doctor or other health professional that they have or had Pancreatic cancer?"
},
"121646540": {
"Variable Label": "Age 25 Weight",
"Variable Name": [
"SrvBOH_Weight25_v1r0"
]
},
"122054737": {
"Variable Label": "Home address summary",
"Variable Name": [
"SrvLAW_HomeAddSum_8_v1r0"
]
},
"122802180": {
"Variable Name": "Almost all the time"
},
"122887481": {
"Variable Name": "How old were you when you had your tubes tied (tubal ligation)?"
},
"123104885": {
"Variable Name": "Address 8-Please provide the cross streets of the intersection closest to this address: - SOURCE"
},
"123108471": {
"Variable Name": "Water from the tap or refrigerator that has not been filtered or treated"
},
"123496044": {
"Variable Name": "Specimen Link"
},
"123868967": {
"Variable Label": "Date Part Deceased",
"Variable Name": [
"HdWd_DeceasedDt_v1r0"
]
},
"123926260": {
"Variable Label": "Cigar",
"Variable Name": [
"SrvSAS_Cigars_v1r0"
]
},
"124071431": {
"Variable Name": "When you had a visual skin examination, how much of your body was screened for skin cancer? Select all that apply."
},
"124276120": {
"Variable Name": "40-45"
},
"124300201": {
"Variable Label": "Why joined Connect - share more",
"Variable Name": [
"SrvPES_WHY2TB_v1r0"
]
},
"124320444": {
"Variable Label": "Lived anywhere else at least two years",
"Variable Name": [
"SrvLAW_HomeAddOth10_v2r0"
]
},
"124391414": {
"Variable Label": "Age started using chewing tobacco, snus, snuff, or dip on a regular basis, Never used",
"Variable Name": [
"SrvSAS_NeverUseCTReg_v2r0"
]
},
"124830305": {
"Variable Label": "Number of Connect communications",
"Variable Name": [
"SrvPES_COMM1_v1r0"
]
},
"125001209": {
"Variable Name": "Kaiser Permanente Colorado"
},
"125674414": {
"Variable Name": "7"
},
"125739724": {
"Variable Label": "Bag 16",
"Variable Name": [
"BioPack_Bag16_v1r0"
]
},
"126331570": {
"Variable Label": "SSN Surv",
"Variable Name": [
"SrvSS_SSNSurvey_v1r0"
]
},
"126388230": {
"Variable Label": "Why baseline survey not completed - text box",
"Variable Name": [
"SrvPES_BASELINE2OTH_v1r0"
]
},
"126794793": {
"Variable Label": "Long COVID Return to usual activities",
"Variable Name": [
"SrvBlU_COV19B4_v1r0",
"SrvBlU_COV19B4_v1r0",
"SrvCov_COV19B4_v1r0"
]
},
"127038003": {
"Variable Label": "How many pipe fills of tobacco per day, [X / 70] and older",
"Variable Name": [
"SrvSAS_PipeFills70_v1r1"
]
},
"127257956": {
"Variable Name": "Child 1- How old was your [CHILD INITIALS OR NICKNAME/YOUR CHILD] when they were first told by a doctor or other health professional that they have or had Pancreatic cancer?"
},
"127455035": {
"Variable Name": "2 hours or more"
},
"127547625": {
"Variable Name": "Text message"
},
"127626388": {
"Variable Name": "Bismarck Medical Center"
},
"127871793": {
"Variable Label": "Age first smoked a hookah or water pipe",
"Variable Name": [
"SrvSAS_AgeHookahF_v1r0"
]
},
"127963610": {
"Variable Label": "Zip code",
"Variable Name": [
"SrvLAW_Zip5_v1r0"
]
},
"128705365": {
"Variable Name": "Typical time spent doing Household chores or Shopping activities"
},
"128827522": {
"Variable Label": "City",
"Variable Name": [
"SrvLAW_ChildCity_v1r0"
]
},
"129025755": {
"Variable Label": "Ever screened for anal cancer",
"Variable Name": [
"SrvScr_ANALSCREEN_v1r0"
]
},
"129084651": {
"Variable Name": "Survey"
},
"129202138": {
"Variable Label": "Social Isolation t-score, PROMIS-29",
"Variable Name": [
"SrvQOL_3moTSocIso_v1r0"
]
},
"129226572": {
"Variable Label": "Apartment, suite, unit, building, etc.",
"Variable Name": [
"SrvLAW_Apt1_v1r0"
]
},
"129284742": {
"Variable Label": "Insulin Conc",
"Variable Name": [
"SrvMRE_InsulinConc_v2r0"
]
},
"129677435": {
"Variable Label": "Use marijuana every day, age last used",
"Variable Name": [
"SrvSAS_MJUseEDLastUsed_v3r0"
]
},
"129924389": {
"Variable Name": "In total, how many months or years have you used copper IUD?"
},
"130174162": {
"Variable Label": "Street number",
"Variable Name": [
"SrvLAW_StNum3_v1r0"
]
},
"130311122": {
"Variable Label": "Hormone",
"Variable Name": [
"SrvBlU_HORMONE_v1r0",
"SrvBlU_HORMONE_v1r0"
]
},
"130371375": {
"Variable Label": "Payment Round",
"Variable Name": [
"SMPaym_Round_v1r0"
]
},
"130500844": {
"Variable Label": "Tap water times/day, other beverages or soup",
"Variable Name": [
"SrvLAW_DrinksWtr2E_Num_v2r0"
]
},
"131458944": {
"Variable Label": "Worried About Discrimination From Data",
"Variable Name": [
"HdRef_PrivacyH_v1r0"
]
},
"131550264": {
"Variable Name": "Fair"
},
"132080040": {
"Variable Name": "No change needed"
},
"132099255": {
"Variable Name": "Sometimes"
},
"132115595": {
"Variable Label": "Surface used",
"Variable Name": [
"SrvPES_TABLET2B_v1r0"
]
},
"132232896": {
"Variable Name": "100 or more"
},
"132343154": {
"Variable Label": "SE t-score Cog Funct, PROMIS-29",
"Variable Name": [
"SrvQOL_3moSECogFunct_v1r0"
]
},
"132548932": {
"Variable Label": "Chest Pain",
"Variable Name": [
"SrvBOH_ChestPain_v1r0"
]
},