pulse-code 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. pulse/__init__.py +1 -0
  2. pulse/__main__.py +4 -0
  3. pulse/catalog.py +102 -0
  4. pulse/cli.py +984 -0
  5. pulse/data/catalog.json +1599 -0
  6. pulse/data/queries_index.json +328 -0
  7. pulse/data/variable_labels.json +1338 -0
  8. pulse/llm_builder.py +732 -0
  9. pulse/matcher.py +180 -0
  10. pulse/queries/aids-cases-by-year-1981-1999-req.xml +178 -0
  11. pulse/queries/births-by-year-1995-2002-req.xml +226 -0
  12. pulse/queries/births-by-year-2003-2006-req.xml +306 -0
  13. pulse/queries/births-by-year-2007-2024-req.xml +334 -0
  14. pulse/queries/cancer-incidence-by-site-by-year-1999-2022-req.xml +174 -0
  15. pulse/queries/cancer-mortality-by-site-by-year-2018-2023-req.xml +166 -0
  16. pulse/queries/covid-deaths-by-race-2020-2023-req.xml +529 -0
  17. pulse/queries/drug-deaths-by-month-1999-2020-req.xml +436 -0
  18. pulse/queries/drug-deaths-by-month-2018-2024-req.xml +544 -0
  19. pulse/queries/drug-deaths-by-year-1999-2020-req.xml +436 -0
  20. pulse/queries/drug-deaths-by-year-2018-2024-req.xml +536 -0
  21. pulse/queries/fentanyl-deaths-by-month-1999-2020-req.xml +430 -0
  22. pulse/queries/fentanyl-deaths-by-month-2018-2024-req.xml +530 -0
  23. pulse/queries/fetal-deaths-by-cause-by-year-2014-2024-req.xml +530 -0
  24. pulse/queries/fetal-deaths-by-year-2005-2024-req.xml +322 -0
  25. pulse/queries/heart-vs-cancer-by-sex-2018-2023-req.xml +532 -0
  26. pulse/queries/heat-wave-days-by-county-req.xml +154 -0
  27. pulse/queries/infant-mortality-2018-2023-req.xml +531 -0
  28. pulse/queries/infant-mortality-by-cause-by-year-2007-2023-req.xml +290 -0
  29. pulse/queries/maternal-mortality-by-year-1999-2020-req.xml +351 -0
  30. pulse/queries/maternal-mortality-by-year-2018-2024-req.xml +413 -0
  31. pulse/queries/mortality-by-race-sex-2018-2023-req.xml +490 -0
  32. pulse/queries/mortality-by-year-cause-1979-1998-req.xml +222 -0
  33. pulse/queries/mortality-by-year-cause-1999-2020-req.xml +434 -0
  34. pulse/queries/mortality-by-year-cause-2021-2024-req.xml +529 -0
  35. pulse/queries/opioid-overdose-deaths-2018-2024-req.xml +544 -0
  36. pulse/queries/pm25-by-year-2003-2011-req.xml +194 -0
  37. pulse/queries/provisional-births-by-month-2023-req.xml +854 -0
  38. pulse/queries/racial-mortality-gap-2018-2023-req.xml +531 -0
  39. pulse/queries/std-cases-by-disease-by-year-1984-2014-req.xml +178 -0
  40. pulse/queries/suicide-by-sex-1999-2020-req.xml +411 -0
  41. pulse/queries/suicide-by-sex-2021-2024-req.xml +551 -0
  42. pulse/queries/tb-cases-by-year-1993-2023-req.xml +206 -0
  43. pulse/queries/tick-borne-diseases-by-year-2016-2023-req.xml +125 -0
  44. pulse/queries/underlying-cause-mortality-by-year-1999-2020-req.xml +350 -0
  45. pulse/queries/unintentional-injuries-by-age-2018-2023-req.xml +531 -0
  46. pulse/templates/D10-base.xml +226 -0
  47. pulse/templates/D104-base.xml +142 -0
  48. pulse/templates/D117-base.xml +110 -0
  49. pulse/templates/D128-base.xml +182 -0
  50. pulse/templates/D140-base.xml +318 -0
  51. pulse/templates/D141-base.xml +454 -0
  52. pulse/templates/D149-base.xml +878 -0
  53. pulse/templates/D157-base.xml +490 -0
  54. pulse/templates/D158-base.xml +406 -0
  55. pulse/templates/D159-base.xml +774 -0
  56. pulse/templates/D16-base.xml +266 -0
  57. pulse/templates/D176-base.xml +526 -0
  58. pulse/templates/D178-base.xml +158 -0
  59. pulse/templates/D18-base.xml +262 -0
  60. pulse/templates/D192-base.xml +854 -0
  61. pulse/templates/D204-base.xml +142 -0
  62. pulse/templates/D23-base.xml +258 -0
  63. pulse/templates/D27-base.xml +342 -0
  64. pulse/templates/D31-base.xml +262 -0
  65. pulse/templates/D60-base.xml +274 -0
  66. pulse/templates/D61-base.xml +250 -0
  67. pulse/templates/D66-base.xml +378 -0
  68. pulse/templates/D69-base.xml +278 -0
  69. pulse/templates/D73-base.xml +182 -0
  70. pulse/templates/D74-base.xml +254 -0
  71. pulse/templates/D76-base.xml +350 -0
  72. pulse/templates/D77-base.xml +434 -0
  73. pulse/templates/D8-base.xml +314 -0
  74. pulse/templates/D80-base.xml +174 -0
  75. pulse/templates/D81-base.xml +178 -0
  76. pulse/wonder_client.py +161 -0
  77. pulse_code-1.0.1.dist-info/METADATA +249 -0
  78. pulse_code-1.0.1.dist-info/RECORD +82 -0
  79. pulse_code-1.0.1.dist-info/WHEEL +5 -0
  80. pulse_code-1.0.1.dist-info/entry_points.txt +2 -0
  81. pulse_code-1.0.1.dist-info/licenses/LICENSE +121 -0
  82. pulse_code-1.0.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1338 @@
1
+ {
2
+ "D10": {
3
+ "D10.V1": "Age of Mother",
4
+ "D10.V10": "Tobacco Use",
5
+ "D10.V11": "Anemia",
6
+ "D10.V12": "Cardiac Disease",
7
+ "D10.V13": "Lung Disease",
8
+ "D10.V14": "Diabetes",
9
+ "D10.V15": "Hydramnios / Oligohydramnios",
10
+ "D10.V16": "Chronic Hypertension",
11
+ "D10.V17": "Pregnancy-associated Hypertension",
12
+ "D10.V18": "Eclampsia",
13
+ "D10.V19": "Incompetent Cervix",
14
+ "D10.V2": "Mother's Race",
15
+ "D10.V20": "Year",
16
+ "D10.V21-level1": "State",
17
+ "D10.V21-level2": "County",
18
+ "D10.V22-level1": "Census Region",
19
+ "D10.V22-level2": "Census Division",
20
+ "D10.V3": "Sex",
21
+ "D10.V37-level1": "HHS Region",
22
+ "D10.V4": "Mother's Hispanic Origin",
23
+ "D10.V5": "Mother's Education",
24
+ "D10.V6": "Gestational Age at Birth",
25
+ "D10.V7": "Plurality or Multiple Birth",
26
+ "D10.V8": "Month Prenatal Care Began",
27
+ "D10.V9": "Infant Birth Weight"
28
+ },
29
+ "D104": {
30
+ "D104.V2-level2": "County",
31
+ "D104.V3": "Year"
32
+ },
33
+ "D117": {
34
+ "D117.V1": "Age",
35
+ "D117.V2": "Sex",
36
+ "D117.V3": "Ethnicity",
37
+ "D117.V4": "Race",
38
+ "D117.V5": "Year",
39
+ "D117.V8": "Age Group"
40
+ },
41
+ "D12": {
42
+ "D12.V1": "Age at Diagnosis",
43
+ "D12.V10": "Heterosexual Partner is an IV Drug User",
44
+ "D12.V11": "Heterosexual Partner has Other Risks",
45
+ "D12.V12": "Heterosexual Partner is HIV Positive",
46
+ "D12.V13": "Location",
47
+ "D12.V14-level1": "Year Reported",
48
+ "D12.V14-level2": "Quarter Reported",
49
+ "D12.V14-level3": "Month Reported",
50
+ "D12.V17-level1": "Year Diagnosed",
51
+ "D12.V17-level2": "Quarter Diagnosed",
52
+ "D12.V17-level3": "Month Diagnosed",
53
+ "D12.V2": "Sex and Sexual Orientation",
54
+ "D12.V3": "Race or Ethnicity",
55
+ "D12.V4": "Case Definition",
56
+ "D12.V5": "Vital Status",
57
+ "D12.V6": "HIV Exposure Category",
58
+ "D12.V7": "Multiple modes of Exposure",
59
+ "D12.V8": "Country of birth",
60
+ "D12.V9": "Heterosexual Partner is Bisexual Male"
61
+ },
62
+ "D127": {
63
+ "D127.V1": "Year",
64
+ "D127.V2": "State",
65
+ "D127.V3": "Disease",
66
+ "D127.V4": "Sex",
67
+ "D127.V5-level1": "STD Region",
68
+ "D127.V6-level1": "MMWR Region",
69
+ "D127.V7-level1": "HHS Region"
70
+ },
71
+ "D128": {
72
+ "D128.V1": "Year",
73
+ "D128.V2": "State",
74
+ "D128.V3": "Disease",
75
+ "D128.V4": "Sex",
76
+ "D128.V5-level1": "STD Region",
77
+ "D128.V6-level1": "MMWR Region",
78
+ "D128.V7-level1": "HHS Region",
79
+ "D128.V8": "Race/Ethnicity",
80
+ "D128.V9": "Age"
81
+ },
82
+ "D130": {
83
+ "D130.V1": "Year",
84
+ "D130.V3": "Disease"
85
+ },
86
+ "D133": {
87
+ "D133.V1": "Age of Mother 9",
88
+ "D133.V14": "Diabetes",
89
+ "D133.V16": "Chronic Hypertension",
90
+ "D133.V17": "Pregnancy-associated Hypertension",
91
+ "D133.V18": "Eclampsia",
92
+ "D133.V2": "Mother's Bridged Race",
93
+ "D133.V20": "Year",
94
+ "D133.V21": "Standard Residence States",
95
+ "D133.V22-level1": "Standard Residence Census Region",
96
+ "D133.V22-level2": "Standard Residence Census Division",
97
+ "D133.V23": "LMP Gestational Age 10",
98
+ "D133.V24": "LMP Gestational Age Weekly",
99
+ "D133.V25": "Month",
100
+ "D133.V26": "Weekday",
101
+ "D133.V27": "Mother's Marital Status",
102
+ "D133.V28": "Live Birth Order",
103
+ "D133.V29": "Medical Attendant",
104
+ "D133.V3": "Sex",
105
+ "D133.V30": "Delivery Place",
106
+ "D133.V31": "Delivery Method",
107
+ "D133.V35": "Infant Delivery Weight 14",
108
+ "D133.V36": "Total Birth Order",
109
+ "D133.V37-level1": "Standard Residence HHS Region",
110
+ "D133.V38": "Age of Mother 10",
111
+ "D133.V39": "Age of Mother 13",
112
+ "D133.V4": "Mother's Bridged Race/Hispanic Origin",
113
+ "D133.V41": "Age of Father",
114
+ "D133.V42": "Breech",
115
+ "D133.V43": "Forceps",
116
+ "D133.V44": "Vacuum",
117
+ "D133.V45": "Delivery Place 3",
118
+ "D133.V46": "Anencephalus",
119
+ "D133.V47": "Spina Bifida / Meningocele",
120
+ "D133.V48": "Omphalocele / Gastroschisis",
121
+ "D133.V49": "Cleft Lip / Palate",
122
+ "D133.V5": "Mother's Hispanic Origin",
123
+ "D133.V50": "Downs Syndrome",
124
+ "D133.V56": "Mother's Weight Gain 7",
125
+ "D133.V6": "LMP Gestational Age 4",
126
+ "D133.V61": "Expanded Residence States",
127
+ "D133.V62-level1": "Expanded Residence Census Region",
128
+ "D133.V62-level2": "Expanded Residence Census Division",
129
+ "D133.V67-level1": "Expanded Residence HHS Region",
130
+ "D133.V7": "Plurality or Multiple Birth",
131
+ "D133.V9": "Infant Delivery Weight 4"
132
+ },
133
+ "D140": {
134
+ "D140.V1": "Year",
135
+ "D140.V10-level1": "Census Region",
136
+ "D140.V10-level2": "Census Division",
137
+ "D140.V11": "2006 Urbanization",
138
+ "D140.V12": "Injury Intent",
139
+ "D140.V13": "Injury Mechanism & All Other Leading Causes",
140
+ "D140.V17": "Hispanic Origin",
141
+ "D140.V18-level1": "HHS Region",
142
+ "D140.V19": "2013 Urbanization",
143
+ "D140.V2-level1": "ICD Chapter",
144
+ "D140.V2-level2": "ICD Sub-Chapter",
145
+ "D140.V2-level3": "Cause of death",
146
+ "D140.V20": "2013 CBSA",
147
+ "D140.V21": "2005 CBSA",
148
+ "D140.V22": "2013 Metro/Nonmetro",
149
+ "D140.V23": "2005 Metro/Nonmetro",
150
+ "D140.V4-level1": "ICD 113 Groups",
151
+ "D140.V5": "Age Group",
152
+ "D140.V6": "Infant Age Groups",
153
+ "D140.V7": "Sex",
154
+ "D140.V8": "Race",
155
+ "D140.V9-level1": "State",
156
+ "D140.V9-level2": "County"
157
+ },
158
+ "D141": {
159
+ "D141.V1-level1": "Year",
160
+ "D141.V1-level2": "Month",
161
+ "D141.V10-level1": "Census Region",
162
+ "D141.V10-level2": "Census Division",
163
+ "D141.V11": "2006 Urbanization",
164
+ "D141.V12": "UCD - ICD-10 130 Cause List (Infants)",
165
+ "D141.V13-level1": "MCD - ICD Chapter",
166
+ "D141.V13-level2": "MCD - ICD Sub-Chapter",
167
+ "D141.V13-level3": "Multiple Cause of death",
168
+ "D141.V15": "MCD - ICD-10 113 Cause List",
169
+ "D141.V16": "MCD - ICD-10 130 Cause List (Infants)",
170
+ "D141.V17": "Hispanic Origin",
171
+ "D141.V19": "2013 Urbanization",
172
+ "D141.V2-level1": "UCD - ICD Chapter",
173
+ "D141.V2-level2": "UCD - ICD Sub-Chapter",
174
+ "D141.V2-level3": "Underlying Cause of death",
175
+ "D141.V20": "Autopsy",
176
+ "D141.V21": "Place of Death",
177
+ "D141.V22": "UCD - Injury Intent",
178
+ "D141.V23": "UCD - Injury Mechanism & All Other Leading Causes",
179
+ "D141.V24": "Weekday",
180
+ "D141.V25-level1": "UCD - Drug/Alcohol Induced",
181
+ "D141.V25-level2": "UCD - Drug/Alcohol Induced Cause",
182
+ "D141.V26-level1": "MCD - Drug/Alcohol Induced",
183
+ "D141.V26-level2": "MCD - Drug/Alcohol Induced Cause",
184
+ "D141.V27-level1": "HHS Region",
185
+ "D141.V28": "UCD - 15 Leading Causes of Death",
186
+ "D141.V29": "UCD - 15 Leading Causes of Death (Infants)",
187
+ "D141.V30-level1": "Border Region",
188
+ "D141.V31-level1": "Border State Area",
189
+ "D141.V31-level2": "Border County",
190
+ "D141.V4": "UCD - ICD-10 113 Cause List",
191
+ "D141.V5": "Ten-Year Age Groups",
192
+ "D141.V51": "Five-Year Age Groups",
193
+ "D141.V52": "Single-Year Ages",
194
+ "D141.V6": "Infant Age Groups",
195
+ "D141.V7": "Sex",
196
+ "D141.V8": "Race",
197
+ "D141.V9-level1": "State",
198
+ "D141.V9-level2": "County"
199
+ },
200
+ "D149": {
201
+ "D149.V1": "Age of Mother 9",
202
+ "D149.V10": "Tobacco Use",
203
+ "D149.V100": "Trial of Labor Attempted (if cesarean)",
204
+ "D149.V101": "Delivery Method Expanded",
205
+ "D149.V102": "Maternal Transfusion",
206
+ "D149.V103": "Perineal Laceration",
207
+ "D149.V104": "Ruptured Uterus",
208
+ "D149.V105": "Unplanned Hysterectomy",
209
+ "D149.V106": "Admission to Intensive Care Unit",
210
+ "D149.V107": "Maternal Morbidity Checked",
211
+ "D149.V108": "Mother Transferred",
212
+ "D149.V109": "Source of Payment for Delivery Expanded",
213
+ "D149.V110": "Source of Payment for Delivery",
214
+ "D149.V111": "Five Minute APGAR Score",
215
+ "D149.V112": "Five Minute APGAR Score Recode",
216
+ "D149.V113": "Ten Minute APGAR Score",
217
+ "D149.V114": "Ten Minute APGAR Score Recode",
218
+ "D149.V115": "Set Order",
219
+ "D149.V116": "Assisted Ventilation",
220
+ "D149.V117": "Assisted Ventilation > 6 hrs",
221
+ "D149.V118": "NICU Admission",
222
+ "D149.V119": "Surfactant Replacement Therapy",
223
+ "D149.V120": "Antibiotics for Suspected Neonatal Sepsis",
224
+ "D149.V121": "Seizures",
225
+ "D149.V122": "Abnormal Conditions Checked",
226
+ "D149.V123": "Anencephaly",
227
+ "D149.V124": "Meningomyelocele / Spina Bifida",
228
+ "D149.V125": "Cyanotic Congenital Heart Disease",
229
+ "D149.V126": "Congenital Diaphragmatic Hernia",
230
+ "D149.V127": "Omphalocele",
231
+ "D149.V128": "Gastroschisis",
232
+ "D149.V129": "Limb Reduction Defect",
233
+ "D149.V130": "Cleft Lip with or without Cleft Palate",
234
+ "D149.V131": "Cleft Palate Alone",
235
+ "D149.V132": "Down Syndrome",
236
+ "D149.V133": "Suspected Chromosomal Disorder",
237
+ "D149.V134": "Hypospadias",
238
+ "D149.V135": "Congenital Anomalies Checked",
239
+ "D149.V136": "Infant Transferred",
240
+ "D149.V137": "Infant Living at Time of Report",
241
+ "D149.V138": "Infant Breastfed at Discharge",
242
+ "D149.V139": "Number of Cigarettes Before Pregnancy",
243
+ "D149.V140": "Number of Cigarettes 1st Trimester",
244
+ "D149.V141": "Number of Cigarettes 2nd Trimester",
245
+ "D149.V142": "Number of Cigarettes 3rd Trimester",
246
+ "D149.V143": "Number of Cigarettes Before Pregnancy Recode",
247
+ "D149.V144": "Number of Cigarettes 1st Trimester Recode",
248
+ "D149.V145": "Number of Cigarettes 2nd Trimester Recode",
249
+ "D149.V146": "Number of Cigarettes 3rd Trimester Recode",
250
+ "D149.V147": "Mother's Birth Country",
251
+ "D149.V149": "Mother's Pre-pregnancy Weight",
252
+ "D149.V150": "Mother's Delivery Weight",
253
+ "D149.V151": "Prior Births Now Living",
254
+ "D149.V152": "Prior Births Now Dead",
255
+ "D149.V153": "Prior Other Pregnancy Outcomes",
256
+ "D149.V154": "2013 Metro/Nonmetro",
257
+ "D149.V155": "2006 Metro/Nonmetro",
258
+ "D149.V156": "2013 Urbanization",
259
+ "D149.V157": "2006 Urbanization",
260
+ "D149.V158": "2023 Metro/Nonmetro",
261
+ "D149.V159": "2023 Urbanization",
262
+ "D149.V16": "Pre-pregnancy Hypertension",
263
+ "D149.V17": "Gestational Hypertension",
264
+ "D149.V18": "Eclampsia",
265
+ "D149.V20": "Year",
266
+ "D149.V21-level1": "State of Residence",
267
+ "D149.V21-level2": "County of Residence",
268
+ "D149.V22-level1": "Census Region of Residence",
269
+ "D149.V22-level2": "Census Division of Residence",
270
+ "D149.V23": "LMP Gestational Recode 11",
271
+ "D149.V24": "LMP Gestational Age Weekly",
272
+ "D149.V25": "Month",
273
+ "D149.V26": "Weekday",
274
+ "D149.V27": "Marital Status",
275
+ "D149.V28": "Live Birth Order",
276
+ "D149.V29": "Medical Attendant",
277
+ "D149.V3": "Sex of Infant",
278
+ "D149.V30": "Birthplace Recode 6",
279
+ "D149.V31": "Delivery Method",
280
+ "D149.V32": "OE Gestational Age Recode 10",
281
+ "D149.V33": "OE Gestational Age Recode 11",
282
+ "D149.V34": "OE Gestational Age Weekly",
283
+ "D149.V35": "Infant Birth Weight 14",
284
+ "D149.V37-level1": "HHS Region of Residence",
285
+ "D149.V38": "Age of Mother 10",
286
+ "D149.V39": "Age of Mother 13",
287
+ "D149.V4": "Mother's Expanded Hispanic Origin",
288
+ "D149.V41": "Infant Birth Weight 100 gram increments",
289
+ "D149.V42": "Mother's Single Race 6",
290
+ "D149.V43": "Mother's Hispanic Origin",
291
+ "D149.V44": "Time of Day",
292
+ "D149.V45": "Birthplace",
293
+ "D149.V46": "Birthplace Recode 3",
294
+ "D149.V47": "Mother's Birth State",
295
+ "D149.V48": "Mother's Nativity",
296
+ "D149.V49": "Mother's Single Race 15",
297
+ "D149.V5": "Mother's Education",
298
+ "D149.V50": "Mother's Single/Multi Race 31",
299
+ "D149.V51": "Paternity Acknowledgment (if mother unmarried)",
300
+ "D149.V52": "Father's Expanded Hispanic Origin",
301
+ "D149.V53": "Father's Hispanic Origin",
302
+ "D149.V54": "Father's Single Race 6",
303
+ "D149.V55": "Father's Single Race 15",
304
+ "D149.V56": "Father's Single/Multi Race 31",
305
+ "D149.V57": "Age of Father",
306
+ "D149.V58": "Father's Education",
307
+ "D149.V59": "Total Birth Order",
308
+ "D149.V6": "LMP Gestational Recode 10",
309
+ "D149.V60": "Interval Since Last Live Birth",
310
+ "D149.V61": "Interval Since Last Other Pregnancy Outcome",
311
+ "D149.V62": "Interval of Last Pregnancy",
312
+ "D149.V63": "Trimester Prenatal Care Began",
313
+ "D149.V64": "Number of Prenatal Visits",
314
+ "D149.V65": "Number of Prenatal Visits Recode",
315
+ "D149.V66": "WIC",
316
+ "D149.V7": "Plurality",
317
+ "D149.V70": "Mother's Height in Inches",
318
+ "D149.V71": "Mother's Pre-pregnancy BMI",
319
+ "D149.V73": "Mother's Weight Gain Recode",
320
+ "D149.V74": "Pre-pregnancy Diabetes",
321
+ "D149.V75": "Gestational Diabetes",
322
+ "D149.V76": "Previous Preterm Birth",
323
+ "D149.V77": "Infertility Treatment Used",
324
+ "D149.V78": "Fertility Enhancing Drugs",
325
+ "D149.V79": "Assistive Reproductive Technology",
326
+ "D149.V8": "Month Prenatal Care Began",
327
+ "D149.V80": "Previous Cesarean Delivery",
328
+ "D149.V81": "Number of Previous Cesareans",
329
+ "D149.V82": "Risk Factors Checked",
330
+ "D149.V83": "Gonorrhea",
331
+ "D149.V84": "Syphilis",
332
+ "D149.V85": "Chlamydia",
333
+ "D149.V86": "Hepatitis B",
334
+ "D149.V87": "Hepatitis C",
335
+ "D149.V88": "Infections Checked",
336
+ "D149.V89": "Successful External Cephalic Version",
337
+ "D149.V9": "Infant Birth Weight 12",
338
+ "D149.V90": "Failed External Cephalic Version",
339
+ "D149.V91": "Induction of Labor",
340
+ "D149.V92": "Augmentation of Labor",
341
+ "D149.V93": "Steroids",
342
+ "D149.V94": "Antibiotics for Mother",
343
+ "D149.V95": "Chorioamnionitis",
344
+ "D149.V96": "Anesthesia",
345
+ "D149.V97": "Characteristics of Labor Checked",
346
+ "D149.V98": "Fetal Presentation",
347
+ "D149.V99": "Final Route and Delivery Method"
348
+ },
349
+ "D150": {
350
+ "D150.V1": "Age of Mother 9",
351
+ "D150.V100": "OE Gestational Age Weekly",
352
+ "D150.V101": "Infant Delivery Weight 100 gram increments",
353
+ "D150.V102": "Estimated Time of Fetal Death",
354
+ "D150.V103": "Was Autopsy Performed",
355
+ "D150.V104": "Was Histological Placental Exam Performed",
356
+ "D150.V105": "Was Autop/Hist results used in cause",
357
+ "D150.V106": "Mother's Single Race/Hispanic Origin",
358
+ "D150.V107-level1": "ICD Chapter",
359
+ "D150.V107-level2": "ICD Sub-Chapter",
360
+ "D150.V107-level3": "Cause of Death",
361
+ "D150.V109": "124 Selected Causes of Fetal Death",
362
+ "D150.V110": "Mother's Expanded Hispanic Origin",
363
+ "D150.V115": "2013 Metro/Nonmetro",
364
+ "D150.V116": "2006 Metro/Nonmetro",
365
+ "D150.V117": "2013 Urbanization",
366
+ "D150.V118": "2006 Urbanization",
367
+ "D150.V119": "2023 Metro/Nonmetro",
368
+ "D150.V120": "2023 Urbanization",
369
+ "D150.V14": "Diabetes",
370
+ "D150.V16": "Chronic Hypertension",
371
+ "D150.V17": "Pregnancy-associated Hypertension",
372
+ "D150.V18": "Eclampsia",
373
+ "D150.V2": "Mother's Bridged Race",
374
+ "D150.V20": "Year",
375
+ "D150.V21": "Standard Residence States",
376
+ "D150.V22-level1": "Standard Residence Census Region",
377
+ "D150.V22-level2": "Standard Residence Census Division",
378
+ "D150.V25": "Month",
379
+ "D150.V26": "Weekday",
380
+ "D150.V28": "Live Birth Order",
381
+ "D150.V29": "Medical Attendant",
382
+ "D150.V3": "Sex",
383
+ "D150.V30": "Delivery Place Recode 6",
384
+ "D150.V31": "Delivery Method",
385
+ "D150.V33": "Mother's Single/Multi Race 31",
386
+ "D150.V35": "Infant Delivery Weight 14",
387
+ "D150.V36": "Infant Delivery Weight 16",
388
+ "D150.V37-level1": "Standard Residence HHS Region",
389
+ "D150.V38": "Age of Mother 10",
390
+ "D150.V39": "Age of Mother 13",
391
+ "D150.V4": "Mother's Bridged Race/Hispanic Origin",
392
+ "D150.V42": "Breech",
393
+ "D150.V43": "Forceps",
394
+ "D150.V44": "Vacuum",
395
+ "D150.V45": "Delivery Place Recode 3",
396
+ "D150.V5": "Mother's Hispanic Origin",
397
+ "D150.V51": "Time of Day",
398
+ "D150.V52": "Delivery Place",
399
+ "D150.V53": "Mother's Birth State",
400
+ "D150.V54": "Mother's Nativity",
401
+ "D150.V57": "Mother's Birth Country",
402
+ "D150.V58": "Mother's Single Race 6",
403
+ "D150.V59": "Mother's Single Race 15",
404
+ "D150.V61": "Expanded Residence States",
405
+ "D150.V62-level1": "Expanded Residence Census Region",
406
+ "D150.V62-level2": "Expanded Residence Census Division",
407
+ "D150.V67-level1": "Expanded Residence HHS Region",
408
+ "D150.V68": "Mother's Education",
409
+ "D150.V7": "Plurality or Multiple Birth",
410
+ "D150.V70": "Age of Father 11",
411
+ "D150.V71": "Prior Births Now Living",
412
+ "D150.V72": "Prior Births Now Dead",
413
+ "D150.V73": "Interval Since Last Live Birth",
414
+ "D150.V74": "Trimester Prenatal Care Began",
415
+ "D150.V75": "Month Prenatal Care Began",
416
+ "D150.V76": "WIC",
417
+ "D150.V77": "Tobacco Use",
418
+ "D150.V78": "Number of Cigarettes Before Pregnancy",
419
+ "D150.V79": "Number of Cigarettes 1st Trimester",
420
+ "D150.V80": "Number of Cigarettes 2nd Trimester",
421
+ "D150.V81": "Number of Cigarettes 3rd Trimester",
422
+ "D150.V82": "Mother's Height in Inches",
423
+ "D150.V83": "Mother's Pre-pregnancy BMI",
424
+ "D150.V84": "Mother's Pre-pregnancy Weight",
425
+ "D150.V85": "Pre-pregnancy Diabetes",
426
+ "D150.V86": "Gestational Diabetes",
427
+ "D150.V87": "Infertility Treatment Used",
428
+ "D150.V88": "Fertility Enhancing Drugs",
429
+ "D150.V89": "Assistive Reproductive Technology",
430
+ "D150.V9": "Infant Delivery Weight 4",
431
+ "D150.V90": "Previous Cesarean Delivery",
432
+ "D150.V91": "Number of Previous Cesareans",
433
+ "D150.V92": "Fetal Presentation",
434
+ "D150.V93": "Final Route and Delivery Method",
435
+ "D150.V94": "Delivery Method Expanded",
436
+ "D150.V95": "Trial of Labor Attempted (if cesarean)",
437
+ "D150.V96": "Ruptured Uterus",
438
+ "D150.V97": "Admission to Intensive Care Unit",
439
+ "D150.V98": "OE Gestational Age Recode 4",
440
+ "D150.V99": "OE Gestational Age Recode 10"
441
+ },
442
+ "D157": {
443
+ "D157.V1-level1": "Year",
444
+ "D157.V1-level2": "Month",
445
+ "D157.V10-level1": "Census Region",
446
+ "D157.V10-level2": "Census Division",
447
+ "D157.V11": "2006 Urbanization",
448
+ "D157.V12": "UCD - ICD-10 130 Cause List (Infants)",
449
+ "D157.V13-level1": "MCD - ICD Chapter",
450
+ "D157.V13-level2": "MCD - ICD Sub-Chapter",
451
+ "D157.V13-level3": "Multiple Cause of death",
452
+ "D157.V15": "MCD - ICD-10 113 Cause List",
453
+ "D157.V16": "MCD - ICD-10 130 Cause List (Infants)",
454
+ "D157.V17": "Hispanic Origin",
455
+ "D157.V18": "2023 Urbanization",
456
+ "D157.V19": "2013 Urbanization",
457
+ "D157.V2-level1": "UCD - ICD Chapter",
458
+ "D157.V2-level2": "UCD - ICD Sub-Chapter",
459
+ "D157.V2-level3": "Underlying Cause of death",
460
+ "D157.V20": "Autopsy",
461
+ "D157.V21": "Place of Death",
462
+ "D157.V22": "UCD - Injury Intent",
463
+ "D157.V23": "UCD - Injury Mechanism & All Other Leading Causes",
464
+ "D157.V24": "Weekday",
465
+ "D157.V25-level1": "UCD - Drug/Alcohol Induced",
466
+ "D157.V25-level2": "UCD - Drug/Alcohol Induced Cause",
467
+ "D157.V26-level1": "MCD - Drug/Alcohol Induced",
468
+ "D157.V26-level2": "MCD - Drug/Alcohol Induced Cause",
469
+ "D157.V27-level1": "HHS Region",
470
+ "D157.V28": "UCD - 15 Leading Causes of Death",
471
+ "D157.V29": "UCD - 15 Leading Causes of Death (Infants)",
472
+ "D157.V30-level1": "US-Mexico Border Region",
473
+ "D157.V31-level1": "US-Mexico Border State Area",
474
+ "D157.V31-level2": "US-Mexico Border County",
475
+ "D157.V4": "UCD - ICD-10 113 Cause List",
476
+ "D157.V42": "Single Race 6",
477
+ "D157.V43": "Single Race 15",
478
+ "D157.V44": "Single/Multi Race 31",
479
+ "D157.V45": "Education",
480
+ "D157.V5": "Ten-Year Age Groups",
481
+ "D157.V51": "Five-Year Age Groups",
482
+ "D157.V52": "Single-Year Ages",
483
+ "D157.V6": "Infant Age Groups",
484
+ "D157.V7": "Sex",
485
+ "D157.V9-level1": "State",
486
+ "D157.V9-level2": "County"
487
+ },
488
+ "D158": {
489
+ "D158.V1-level1": "Year",
490
+ "D158.V1-level2": "Month",
491
+ "D158.V10-level1": "Census Region",
492
+ "D158.V10-level2": "Census Division",
493
+ "D158.V11": "2006 Urbanization",
494
+ "D158.V12": "ICD-10 130 Cause List (Infants)",
495
+ "D158.V17": "Hispanic Origin",
496
+ "D158.V18": "2023 Urbanization",
497
+ "D158.V19": "2013 Urbanization",
498
+ "D158.V2-level1": "ICD Chapter",
499
+ "D158.V2-level2": "ICD Sub-Chapter",
500
+ "D158.V2-level3": "Cause of death",
501
+ "D158.V20": "Autopsy",
502
+ "D158.V21": "Place of Death",
503
+ "D158.V22": "Injury Intent",
504
+ "D158.V23": "Injury Mechanism & All Other Leading Causes",
505
+ "D158.V24": "Weekday",
506
+ "D158.V25-level1": "Drug/Alcohol Induced",
507
+ "D158.V25-level2": "Drug/Alcohol Induced Cause",
508
+ "D158.V27-level1": "HHS Region",
509
+ "D158.V28": "15 Leading Causes of Death",
510
+ "D158.V29": "15 Leading Causes of Death (Infants)",
511
+ "D158.V30-level1": "US-Mexico Border Region",
512
+ "D158.V31-level1": "US-Mexico Border State Area",
513
+ "D158.V31-level2": "US-Mexico Border County",
514
+ "D158.V4": "ICD-10 113 Cause List",
515
+ "D158.V42": "Single Race 6",
516
+ "D158.V43": "Single Race 15",
517
+ "D158.V44": "Single/Multi Race 31",
518
+ "D158.V45": "Education",
519
+ "D158.V5": "Ten-Year Age Groups",
520
+ "D158.V51": "Five-Year Age Groups",
521
+ "D158.V52": "Single-Year Ages",
522
+ "D158.V6": "Infant Age Groups",
523
+ "D158.V7": "Sex",
524
+ "D158.V9-level1": "State",
525
+ "D158.V9-level2": "County"
526
+ },
527
+ "D159": {
528
+ "D159.V1": "Age of Mother 9",
529
+ "D159.V10-level1": "State",
530
+ "D159.V10-level2": "County",
531
+ "D159.V100": "Number of Cigarettes 1st Trimester",
532
+ "D159.V101": "Number of Cigarettes 2nd Trimester Recode",
533
+ "D159.V102": "Number of Cigarettes 2nd Trimester",
534
+ "D159.V103": "Number of Cigarettes 3rd Trimester Recode",
535
+ "D159.V104": "Number of Cigarettes 3rd Trimester",
536
+ "D159.V11": "Mother's Marital Status",
537
+ "D159.V110": "Medical Attendant",
538
+ "D159.V111": "Fetal Presentation",
539
+ "D159.V112": "Final Route and Delivery Method",
540
+ "D159.V113": "Trial of Labor Attempted (if cesarean)",
541
+ "D159.V114": "Delivery Method Expanded",
542
+ "D159.V115": "Delivery Method",
543
+ "D159.V116": "Mother Transferred",
544
+ "D159.V117": "Source of Payment for Delivery",
545
+ "D159.V118": "Source of Payment for Delivery Expanded",
546
+ "D159.V119": "Maternal Transfusion",
547
+ "D159.V120": "Perineal Laceration",
548
+ "D159.V121": "Ruptured Uterus",
549
+ "D159.V122": "Unplanned Hysterectomy",
550
+ "D159.V123": "Admission to Intensive Care Unit",
551
+ "D159.V124": "Maternal Morbidity Checked",
552
+ "D159.V125": "Five Minute APGAR Score",
553
+ "D159.V126": "Five Minute APGAR Score Recode",
554
+ "D159.V127": "Ten Minute APGAR Score",
555
+ "D159.V128": "Ten Minute APGAR Score Recode",
556
+ "D159.V129": "Assisted Ventilation",
557
+ "D159.V13": "Age of Infant at Death 5",
558
+ "D159.V130": "Assisted Ventilation > 6 hrs",
559
+ "D159.V131": "NICU Admission",
560
+ "D159.V132": "Surfactant Replacement Therapy",
561
+ "D159.V133": "Antibiotics for Suspected Neonatal Sepsis",
562
+ "D159.V134": "Seizures",
563
+ "D159.V135": "Abnormal Conditions Checked",
564
+ "D159.V136": "Infant Transferred",
565
+ "D159.V137": "Infant Living at Time of Report",
566
+ "D159.V138": "Infant Breastfed at Discharge",
567
+ "D159.V140": "Anencephaly",
568
+ "D159.V141": "Meningomyelocele / Spina Bifida",
569
+ "D159.V142": "Cyanotic Congenital Heart Disease",
570
+ "D159.V143": "Congenital Diaphragmatic Hernia",
571
+ "D159.V144": "Omphalocele",
572
+ "D159.V145": "Gastroschisis",
573
+ "D159.V146": "Limb Reduction Defect",
574
+ "D159.V147": "Mother's Birth Country",
575
+ "D159.V148": "Cleft Palate Alone",
576
+ "D159.V149": "Down Syndrome",
577
+ "D159.V15": "Plurality or Multiple Birth",
578
+ "D159.V150": "Suspected Chromosomal Disorder",
579
+ "D159.V151": "Prior Births Now Living",
580
+ "D159.V152": "Prior Births Now Dead",
581
+ "D159.V153": "Prior Other Pregnancy Outcomes",
582
+ "D159.V154": "Age of Infant at Death in days",
583
+ "D159.V155": "Age of Infant at Death 22",
584
+ "D159.V156": "Cleft Lip with or without Cleft Palate",
585
+ "D159.V157": "Hypospadias",
586
+ "D159.V158": "Congenital Anomalies Checked",
587
+ "D159.V16-level1": "ICD Chapter",
588
+ "D159.V16-level2": "ICD Sub-Chapter",
589
+ "D159.V16-level3": "Cause of death",
590
+ "D159.V160": "Number of Previous Cesareans",
591
+ "D159.V161": "Risk Factors Checked",
592
+ "D159.V18": "ICD-10 130 Cause List (Infants)",
593
+ "D159.V183": "Gonorrhea",
594
+ "D159.V184": "Syphilis",
595
+ "D159.V185": "Chlamydia",
596
+ "D159.V186": "Hepatitis B",
597
+ "D159.V187": "Hepatitis C",
598
+ "D159.V188": "Infections Checked",
599
+ "D159.V189": "Successful External Cephalic Version",
600
+ "D159.V19-level1": "Census Region",
601
+ "D159.V19-level2": "Census Division",
602
+ "D159.V190": "Failed External Cephalic Version",
603
+ "D159.V191": "Induction of Labor",
604
+ "D159.V192": "Augmentation of Labor",
605
+ "D159.V193": "Steroids",
606
+ "D159.V194": "Antibiotics for Mother",
607
+ "D159.V195": "Chorioamnionitis",
608
+ "D159.V196": "Anesthesia",
609
+ "D159.V197": "Characteristics of Labor Checked",
610
+ "D159.V199": "Birthplace Recode 6",
611
+ "D159.V24": "LMP Gestational Age 11",
612
+ "D159.V25": "LMP Gestational Age Weekly",
613
+ "D159.V26-level1": "HHS Region",
614
+ "D159.V29": "15 Leading Causes of Death (Infants)",
615
+ "D159.V3": "Sex",
616
+ "D159.V30": "OE Gestational Age 10",
617
+ "D159.V31": "OE Gestational Age 11",
618
+ "D159.V32": "OE Gestational Age Weekly",
619
+ "D159.V33": "Set Order",
620
+ "D159.V35": "Infant Birth Weight 14",
621
+ "D159.V354": "2013 Metro/Nonmetro",
622
+ "D159.V355": "2006 Metro/Nonmetro",
623
+ "D159.V356": "2013 Urbanization",
624
+ "D159.V357": "2006 Urbanization",
625
+ "D159.V38": "Age of Mother 10",
626
+ "D159.V39": "Age of Mother 13",
627
+ "D159.V4": "Mother's Hispanic Origin",
628
+ "D159.V41": "Infant Birth Weight 100 gram increments",
629
+ "D159.V42": "Mother's Single Race 6",
630
+ "D159.V43": "Mother's Expanded Hispanic Origin",
631
+ "D159.V44": "Time of Day",
632
+ "D159.V45": "Birthplace",
633
+ "D159.V46": "Birthplace Recode 3",
634
+ "D159.V47": "Mother's Birth State",
635
+ "D159.V48": "Mother's Nativity",
636
+ "D159.V49": "Mother's Single Race 15",
637
+ "D159.V5": "Mother's Education",
638
+ "D159.V50": "Mother's Single/Multi Race 31",
639
+ "D159.V51": "Paternity Acknowledgment (if mother unmarried)",
640
+ "D159.V52": "Father's Expanded Hispanic Origin",
641
+ "D159.V53": "Father's Hispanic Origin",
642
+ "D159.V54": "Father's Single Race 6",
643
+ "D159.V55": "Father's Single Race 15",
644
+ "D159.V56": "Father's Single/Multi Race 31",
645
+ "D159.V57": "Age of Father",
646
+ "D159.V58": "Father's Education",
647
+ "D159.V6": "LMP Gestational Age 10",
648
+ "D159.V60": "Pre-pregnancy Diabetes",
649
+ "D159.V61": "Gestational Diabetes",
650
+ "D159.V62": "Pre-pregnancy Hypertension",
651
+ "D159.V63": "Gestational Hypertension",
652
+ "D159.V64": "Eclampsia",
653
+ "D159.V65": "Previous Preterm Birth",
654
+ "D159.V66": "Infertility Treatment Used",
655
+ "D159.V67": "Fertility Enhancing Drugs",
656
+ "D159.V68": "Assistive Reproductive Technology",
657
+ "D159.V69": "Previous Cesarean Delivery",
658
+ "D159.V75": "Month",
659
+ "D159.V76": "Weekday",
660
+ "D159.V8": "Infant Birth Weight 12",
661
+ "D159.V80": "Interval Since Last Live Birth",
662
+ "D159.V81": "Interval Since Last Other Pregnancy Outcome",
663
+ "D159.V82": "Interval of Last Pregnancy",
664
+ "D159.V83": "Month Prenatal Care Began",
665
+ "D159.V84": "Number of Prenatal Visits",
666
+ "D159.V85": "Number of Prenatal Visits Recode",
667
+ "D159.V86": "WIC",
668
+ "D159.V87": "Trimester Prenatal Care Began",
669
+ "D159.V88": "Live Birth Order",
670
+ "D159.V89": "Total Birth Order",
671
+ "D159.V9": "Year of Death",
672
+ "D159.V90": "Mother's Height in Inches",
673
+ "D159.V91": "Mother's Pre-pregnancy BMI",
674
+ "D159.V92": "Mother's Weight Gain Recode",
675
+ "D159.V94": "Mother's Pre-pregnancy Weight",
676
+ "D159.V95": "Mother's Delivery Weight",
677
+ "D159.V96": "Tobacco Use",
678
+ "D159.V97": "Number of Cigarettes Before Pregnancy Recode",
679
+ "D159.V98": "Number of Cigarettes Before Pregnancy",
680
+ "D159.V99": "Number of Cigarettes 1st Trimester Recode"
681
+ },
682
+ "D16": {
683
+ "D16.V1": "Year",
684
+ "D16.V10-level1": "Region",
685
+ "D16.V10-level2": "Division",
686
+ "D16.V12": "Injury Intent",
687
+ "D16.V13": "Injury Mechanism & All Other Leading Causes",
688
+ "D16.V2-level1": "ICD Chapter",
689
+ "D16.V2-level2": "ICD Sub-Chapter",
690
+ "D16.V2-level3": "Cause of death",
691
+ "D16.V4-level1": "ICD 72 Groups",
692
+ "D16.V5": "Age Group",
693
+ "D16.V6": "Infant Age Groups",
694
+ "D16.V7": "Sex",
695
+ "D16.V8": "Race",
696
+ "D16.V9-level1": "State",
697
+ "D16.V9-level2": "County"
698
+ },
699
+ "D176": {
700
+ "D176.V1-level1": "Year",
701
+ "D176.V1-level2": "Month",
702
+ "D176.V10-level1": "Residence Census Region",
703
+ "D176.V10-level2": "Residence Census Division",
704
+ "D176.V100-level1": "MMWR Year",
705
+ "D176.V100-level2": "MMWR Week",
706
+ "D176.V11": "Residence 2006 Urbanization",
707
+ "D176.V12": "UCD - ICD-10 130 Cause List (Infants)",
708
+ "D176.V13-level1": "MCD - ICD Chapter",
709
+ "D176.V13-level2": "MCD - ICD Sub-Chapter",
710
+ "D176.V13-level3": "Multiple Cause of death",
711
+ "D176.V15": "MCD - ICD-10 113 Cause List",
712
+ "D176.V16": "MCD - ICD-10 130 Cause List (Infants)",
713
+ "D176.V17": "Hispanic Origin",
714
+ "D176.V18": "Residence 2023 Urbanization",
715
+ "D176.V19": "Residence 2013 Urbanization",
716
+ "D176.V2-level1": "UCD - ICD Chapter",
717
+ "D176.V2-level2": "UCD - ICD Sub-Chapter",
718
+ "D176.V2-level3": "Underlying Cause of death",
719
+ "D176.V20": "Autopsy",
720
+ "D176.V21": "Place of Death",
721
+ "D176.V22": "UCD - Injury Intent",
722
+ "D176.V23": "UCD - Injury Mechanism & All Other Leading Causes",
723
+ "D176.V25-level1": "UCD - Drug/Alcohol Induced",
724
+ "D176.V25-level2": "UCD - Drug/Alcohol Induced Cause",
725
+ "D176.V26-level1": "MCD - Drug/Alcohol Induced",
726
+ "D176.V26-level2": "MCD - Drug/Alcohol Induced Cause",
727
+ "D176.V27-level1": "Residence HHS Region",
728
+ "D176.V28": "UCD - 15 Leading Causes of Death",
729
+ "D176.V29": "UCD - 15 Leading Causes of Death (Infants)",
730
+ "D176.V4": "UCD - ICD-10 113 Cause List",
731
+ "D176.V42": "Single Race 6",
732
+ "D176.V43": "Single Race 15",
733
+ "D176.V44": "Single/Multi Race 31",
734
+ "D176.V5": "Ten-Year Age Groups",
735
+ "D176.V51": "Five-Year Age Groups",
736
+ "D176.V52": "Single-Year Ages",
737
+ "D176.V6": "Infant Age Groups",
738
+ "D176.V7": "Sex",
739
+ "D176.V77-level1": "Occurrence HHS Region",
740
+ "D176.V79-level1": "Occurrence State",
741
+ "D176.V79-level2": "Occurrence County",
742
+ "D176.V80-level1": "Occurrence Census Region",
743
+ "D176.V80-level2": "Occurrence Census Division",
744
+ "D176.V81": "Occurrence 2006 Urbanization",
745
+ "D176.V82": "Occurrence 2023 Urbanization",
746
+ "D176.V89": "Occurrence 2013 Urbanization",
747
+ "D176.V9-level1": "Residence State",
748
+ "D176.V9-level2": "Residence County"
749
+ },
750
+ "D178": {
751
+ "D178.V1": "Yearly July 1st Estimates",
752
+ "D178.V2-level1": "State",
753
+ "D178.V2-level2": "County",
754
+ "D178.V3": "Age",
755
+ "D178.V4": "Race",
756
+ "D178.V5": "Sex",
757
+ "D178.V6": "Ethnicity",
758
+ "D178.V8": "Age Group",
759
+ "D178.V9-level1": "Region",
760
+ "D178.V9-level2": "Division"
761
+ },
762
+ "D18": {
763
+ "D18.V1": "Age of Mother",
764
+ "D18.V10-level1": "State",
765
+ "D18.V10-level2": "County",
766
+ "D18.V11": "Mother's Marital Status",
767
+ "D18.V12": "Live Birth Order",
768
+ "D18.V13": "Age of Infant at Death",
769
+ "D18.V15": "Plurality or Multiple Birth",
770
+ "D18.V16-level1": "ICD Chapter",
771
+ "D18.V16-level2": "ICD Sub-Chapter",
772
+ "D18.V16-level3": "Cause of death",
773
+ "D18.V18": "ICD-10 130 Cause List (Infants)",
774
+ "D18.V19-level1": "Census Region",
775
+ "D18.V19-level2": "Census Division",
776
+ "D18.V2": "Race",
777
+ "D18.V20": "Medical Attendant",
778
+ "D18.V21": "Birthplace",
779
+ "D18.V22": "Delivery Method",
780
+ "D18.V24": "LMP Gestational Age 11",
781
+ "D18.V25": "LMP Gestational Age Weekly",
782
+ "D18.V26-level1": "HHS Region",
783
+ "D18.V29": "15 Leading Causes of Death (Infants)",
784
+ "D18.V3": "Sex",
785
+ "D18.V4": "Hispanic Origin",
786
+ "D18.V5": "Mother's Education",
787
+ "D18.V6": "LMP Gestational Age 10",
788
+ "D18.V7": "Month Prenatal Care Began",
789
+ "D18.V8": "Birth Weight",
790
+ "D18.V9": "Year of Death"
791
+ },
792
+ "D192": {
793
+ "D192.V1": "Age of Mother 9",
794
+ "D192.V10": "Tobacco Use",
795
+ "D192.V100": "Trial of Labor Attempted (if cesarean)",
796
+ "D192.V101": "Delivery Method Expanded",
797
+ "D192.V102": "Maternal Transfusion",
798
+ "D192.V103": "Perineal Laceration",
799
+ "D192.V104": "Ruptured Uterus",
800
+ "D192.V105": "Unplanned Hysterectomy",
801
+ "D192.V106": "Admission to Intensive Care Unit",
802
+ "D192.V107": "Maternal Morbidity Checked",
803
+ "D192.V108": "Mother Transferred",
804
+ "D192.V110": "Source of Payment for Delivery",
805
+ "D192.V111": "Five Minute APGAR Score",
806
+ "D192.V112": "Five Minute APGAR Score Recode",
807
+ "D192.V113": "Ten Minute APGAR Score",
808
+ "D192.V114": "Ten Minute APGAR Score Recode",
809
+ "D192.V115": "Set Order",
810
+ "D192.V116": "Assisted Ventilation",
811
+ "D192.V117": "Assisted Ventilation > 6 hrs",
812
+ "D192.V118": "NICU Admission",
813
+ "D192.V119": "Surfactant Replacement Therapy",
814
+ "D192.V12": "State or Territory of Residence",
815
+ "D192.V120": "Antibiotics for Suspected Neonatal Sepsis",
816
+ "D192.V121": "Seizures",
817
+ "D192.V122": "Abnormal Conditions Checked",
818
+ "D192.V123": "Anencephaly",
819
+ "D192.V124": "Meningomyelocele / Spina Bifida",
820
+ "D192.V125": "Cyanotic Congenital Heart Disease",
821
+ "D192.V126": "Congenital Diaphragmatic Hernia",
822
+ "D192.V127": "Omphalocele",
823
+ "D192.V128": "Gastroschisis",
824
+ "D192.V129": "Limb Reduction Defect",
825
+ "D192.V130": "Cleft Lip with or without Cleft Palate",
826
+ "D192.V131": "Cleft Palate Alone",
827
+ "D192.V132": "Down Syndrome",
828
+ "D192.V133": "Suspected Chromosomal Disorder",
829
+ "D192.V134": "Hypospadias",
830
+ "D192.V135": "Congenital Anomalies Checked",
831
+ "D192.V136": "Infant Transferred",
832
+ "D192.V137": "Infant Living at Time of Report",
833
+ "D192.V138": "Infant Breastfed at Discharge",
834
+ "D192.V139": "Number of Cigarettes Before Pregnancy",
835
+ "D192.V140": "Number of Cigarettes 1st Trimester",
836
+ "D192.V141": "Number of Cigarettes 2nd Trimester",
837
+ "D192.V142": "Number of Cigarettes 3rd Trimester",
838
+ "D192.V143": "Number of Cigarettes Before Pregnancy Recode",
839
+ "D192.V144": "Number of Cigarettes 1st Trimester Recode",
840
+ "D192.V145": "Number of Cigarettes 2nd Trimester Recode",
841
+ "D192.V146": "Number of Cigarettes 3rd Trimester Recode",
842
+ "D192.V147": "Mother's Birth Country",
843
+ "D192.V149": "Mother's Pre-pregnancy Weight",
844
+ "D192.V150": "Mother's Delivery Weight",
845
+ "D192.V151": "Prior Births Now Living",
846
+ "D192.V152": "Prior Births Now Dead",
847
+ "D192.V153": "Prior Other Pregnancy Outcomes",
848
+ "D192.V154": "2013 Metro/Nonmetro",
849
+ "D192.V155": "2006 Metro/Nonmetro",
850
+ "D192.V156": "2013 Urbanization",
851
+ "D192.V157": "2006 Urbanization",
852
+ "D192.V158": "2023 Metro/Nonmetro",
853
+ "D192.V159": "2023 Urbanization",
854
+ "D192.V16": "Pre-pregnancy Hypertension",
855
+ "D192.V17": "Gestational Hypertension",
856
+ "D192.V18": "Eclampsia",
857
+ "D192.V20": "Year",
858
+ "D192.V21": "State of Residence",
859
+ "D192.V22-level1": "Census Region of Residence",
860
+ "D192.V22-level2": "Census Division of Residence",
861
+ "D192.V23": "LMP Gestational Recode 11",
862
+ "D192.V24": "LMP Gestational Age Weekly",
863
+ "D192.V25": "Month",
864
+ "D192.V26": "Weekday",
865
+ "D192.V27": "Marital Status",
866
+ "D192.V28": "Live Birth Order",
867
+ "D192.V29": "Medical Attendant",
868
+ "D192.V3": "Sex of Infant",
869
+ "D192.V30": "Birthplace Recode 6",
870
+ "D192.V31": "Delivery Method",
871
+ "D192.V32": "OE Gestational Age Recode 10",
872
+ "D192.V33": "OE Gestational Age Recode 11",
873
+ "D192.V34": "OE Gestational Age Weekly",
874
+ "D192.V35": "Infant Birth Weight 14",
875
+ "D192.V37-level1": "HHS Region of Residence",
876
+ "D192.V38": "Age of Mother 10",
877
+ "D192.V39": "Age of Mother 13",
878
+ "D192.V4": "Mother's Expanded Hispanic Origin",
879
+ "D192.V41": "Infant Birth Weight 100 gram increments",
880
+ "D192.V42": "Mother's Single Race 6",
881
+ "D192.V43": "Mother's Hispanic Origin",
882
+ "D192.V44": "Time of Day",
883
+ "D192.V45": "Birthplace",
884
+ "D192.V46": "Birthplace Recode 3",
885
+ "D192.V47": "Mother's Birth State",
886
+ "D192.V48": "Mother's Nativity",
887
+ "D192.V49": "Mother's Single Race 15",
888
+ "D192.V5": "Mother's Education",
889
+ "D192.V50": "Mother's Single/Multi Race 31",
890
+ "D192.V51": "Paternity Acknowledgment (if mother unmarried)",
891
+ "D192.V52": "Father's Expanded Hispanic Origin",
892
+ "D192.V53": "Father's Hispanic Origin",
893
+ "D192.V54": "Father's Single Race 6",
894
+ "D192.V55": "Father's Single Race 15",
895
+ "D192.V56": "Father's Single/Multi Race 31",
896
+ "D192.V57": "Age of Father",
897
+ "D192.V58": "Father's Education",
898
+ "D192.V59": "Total Birth Order",
899
+ "D192.V6": "LMP Gestational Recode 10",
900
+ "D192.V60": "Interval Since Last Live Birth",
901
+ "D192.V61": "Interval Since Last Other Pregnancy Outcome",
902
+ "D192.V62": "Interval of Last Pregnancy",
903
+ "D192.V63": "Trimester Prenatal Care Began",
904
+ "D192.V64": "Number of Prenatal Visits",
905
+ "D192.V65": "Number of Prenatal Visits Recode",
906
+ "D192.V66": "WIC",
907
+ "D192.V7": "Plurality",
908
+ "D192.V70": "Mother's Height in Inches",
909
+ "D192.V71": "Mother's Pre-pregnancy BMI",
910
+ "D192.V73": "Mother's Weight Gain Recode",
911
+ "D192.V74": "Pre-pregnancy Diabetes",
912
+ "D192.V75": "Gestational Diabetes",
913
+ "D192.V76": "Previous Preterm Birth",
914
+ "D192.V77": "Infertility Treatment Used",
915
+ "D192.V78": "Fertility Enhancing Drugs",
916
+ "D192.V79": "Assistive Reproductive Technology",
917
+ "D192.V8": "Month Prenatal Care Began",
918
+ "D192.V80": "Previous Cesarean Delivery",
919
+ "D192.V81": "Number of Previous Cesareans",
920
+ "D192.V82": "Risk Factors Checked",
921
+ "D192.V83": "Gonorrhea",
922
+ "D192.V84": "Syphilis",
923
+ "D192.V85": "Chlamydia",
924
+ "D192.V86": "Hepatitis B",
925
+ "D192.V87": "Hepatitis C",
926
+ "D192.V88": "Infections Checked",
927
+ "D192.V89": "Successful External Cephalic Version",
928
+ "D192.V9": "Infant Birth Weight 12",
929
+ "D192.V90": "Failed External Cephalic Version",
930
+ "D192.V91": "Induction of Labor",
931
+ "D192.V92": "Augmentation of Labor",
932
+ "D192.V93": "Steroids",
933
+ "D192.V94": "Antibiotics for Mother",
934
+ "D192.V95": "Chorioamnionitis",
935
+ "D192.V96": "Anesthesia",
936
+ "D192.V97": "Characteristics of Labor Checked",
937
+ "D192.V98": "Fetal Presentation",
938
+ "D192.V99": "Final Route and Delivery Method"
939
+ },
940
+ "D202": {
941
+ "D202.V1": "Age Groups, Broad",
942
+ "D202.V10": "Drug Use, Non-injecting",
943
+ "D202.V11": "Long-term Care Facility",
944
+ "D202.V12": "Multidrug-Resistant",
945
+ "D202.V14": "Origin of Birth",
946
+ "D202.V15": "Previous TB",
947
+ "D202.V16": "Bridged Race / Ethnicity",
948
+ "D202.V17": "Sex",
949
+ "D202.V18": "Vital Status",
950
+ "D202.V19": "Verification Criteria",
951
+ "D202.V2": "Age Groups, Standard",
952
+ "D202.V20": "Year",
953
+ "D202.V21": "Years in U.S.",
954
+ "D202.V22": "State",
955
+ "D202.V24": "Residence at Diagnosis",
956
+ "D202.V25": "Completion of Therapy Within One Year",
957
+ "D202.V26": "Tested for Isoniazid Susceptibility",
958
+ "D202.V27": "Tested for Isoniazid & Rifampin Susceptibility",
959
+ "D202.V29": "Single Race / Ethnicity",
960
+ "D202.V3": "Alcohol Use",
961
+ "D202.V30": "Diabetes",
962
+ "D202.V31": "Smoker Status",
963
+ "D202.V4": "Correctional Facility",
964
+ "D202.V5": "Disease Site",
965
+ "D202.V6": "Directly Observed Therapy",
966
+ "D202.V7": "HIV Status",
967
+ "D202.V8": "Homeless in Past Year",
968
+ "D202.V9": "Drug Use, Injecting"
969
+ },
970
+ "D204": {
971
+ "D204.V1": "Yearly July 1st Estimates",
972
+ "D204.V2-level1": "State",
973
+ "D204.V2-level2": "County",
974
+ "D204.V4": "Race",
975
+ "D204.V5": "Gender",
976
+ "D204.V6": "Ethnicity",
977
+ "D204.V8": "Age Group",
978
+ "D204.V9-level1": "Region",
979
+ "D204.V9-level2": "Division"
980
+ },
981
+ "D205": {
982
+ "D205.V1": "Year",
983
+ "D205.V10": "Leading Cancer Sites",
984
+ "D205.V11-level1": "Region",
985
+ "D205.V11-level2": "Division",
986
+ "D205.V12": "States and Puerto Rico",
987
+ "D205.V2": "States",
988
+ "D205.V3": "MSA",
989
+ "D205.V4": "Race",
990
+ "D205.V5": "Age Groups",
991
+ "D205.V6": "Ethnicity",
992
+ "D205.V7": "Childhood Cancers",
993
+ "D205.V8": "Cancer Sites",
994
+ "D205.V9": "Sex"
995
+ },
996
+ "D207": {
997
+ "D207.V1": "Year",
998
+ "D207.V10": "Leading Cancer Sites",
999
+ "D207.V11-level1": "Region",
1000
+ "D207.V11-level2": "Division",
1001
+ "D207.V2": "State",
1002
+ "D207.V3": "MSA",
1003
+ "D207.V4": "Race",
1004
+ "D207.V5": "Age Group",
1005
+ "D207.V6": "Ethnicity",
1006
+ "D207.V8": "Cancer Sites",
1007
+ "D207.V9": "Sex"
1008
+ },
1009
+ "D23": {
1010
+ "D23.V1": "Age of Mother",
1011
+ "D23.V10-level1": "State",
1012
+ "D23.V10-level2": "County",
1013
+ "D23.V11": "Mother's Marital Status",
1014
+ "D23.V12": "Live Birth Order",
1015
+ "D23.V13": "Age of Infant at Death",
1016
+ "D23.V15": "Plurality or Multiple Birth",
1017
+ "D23.V16-level1": "ICD Chapter",
1018
+ "D23.V16-level2": "ICD Sub-Chapter",
1019
+ "D23.V16-level3": "Cause of death",
1020
+ "D23.V18-level1": "ICD 72 Groups",
1021
+ "D23.V19-level1": "Census Region",
1022
+ "D23.V19-level2": "Census Division",
1023
+ "D23.V2": "Race",
1024
+ "D23.V26-level1": "HHS Region",
1025
+ "D23.V3": "Sex",
1026
+ "D23.V4": "Hispanic Origin",
1027
+ "D23.V5": "Mother's Education",
1028
+ "D23.V6": "LMP Gestational Age at Birth",
1029
+ "D23.V7": "Month Prenatal Care Began",
1030
+ "D23.V8": "Birth Weight",
1031
+ "D23.V9": "Year of Death"
1032
+ },
1033
+ "D27": {
1034
+ "D27.V1": "Age of Mother 9",
1035
+ "D27.V10": "Tobacco Use",
1036
+ "D27.V11": "Anemia",
1037
+ "D27.V12": "Cardiac Disease",
1038
+ "D27.V13": "Lung Disease",
1039
+ "D27.V14": "Diabetes",
1040
+ "D27.V15": "Hydramnios / Oligohydramnios",
1041
+ "D27.V16": "Chronic Hypertension",
1042
+ "D27.V17": "Pregnancy-associated Hypertension",
1043
+ "D27.V18": "Eclampsia",
1044
+ "D27.V19": "Incompetent Cervix",
1045
+ "D27.V2": "Mother's Bridged Race",
1046
+ "D27.V20": "Year",
1047
+ "D27.V21-level1": "State",
1048
+ "D27.V21-level2": "County",
1049
+ "D27.V22-level1": "Census Region",
1050
+ "D27.V22-level2": "Census Division",
1051
+ "D27.V23": "LMP Gestational Age 11",
1052
+ "D27.V24": "LMP Gestational Age Weekly",
1053
+ "D27.V25": "Month",
1054
+ "D27.V26": "Weekday",
1055
+ "D27.V27": "Marital Status",
1056
+ "D27.V28": "Live Birth Order",
1057
+ "D27.V29": "Medical Attendant",
1058
+ "D27.V3": "Sex",
1059
+ "D27.V30": "Birthplace",
1060
+ "D27.V31": "Delivery Method",
1061
+ "D27.V35": "Infant Birth Weight 14",
1062
+ "D27.V37-level1": "HHS Region",
1063
+ "D27.V38": "Age of Mother 10",
1064
+ "D27.V39": "Age of Mother 13",
1065
+ "D27.V4": "Mother's Expanded Hispanic Origin",
1066
+ "D27.V41": "Infant Birth Weight 100 gram increments",
1067
+ "D27.V43": "Mother's Hispanic Origin",
1068
+ "D27.V5": "Mother's Education",
1069
+ "D27.V6": "LMP Gestational Age 10",
1070
+ "D27.V7": "Plurality or Multiple Birth",
1071
+ "D27.V8": "Month Prenatal Care Began",
1072
+ "D27.V9": "Infant Birth Weight 12"
1073
+ },
1074
+ "D31": {
1075
+ "D31.V1": "Age of Mother",
1076
+ "D31.V10-level1": "State",
1077
+ "D31.V10-level2": "County",
1078
+ "D31.V11": "Mother's Marital Status",
1079
+ "D31.V12": "Live Birth Order",
1080
+ "D31.V13": "Age of Infant at Death",
1081
+ "D31.V15": "Plurality or Multiple Birth",
1082
+ "D31.V16-level1": "ICD Chapter",
1083
+ "D31.V16-level2": "ICD Sub-Chapter",
1084
+ "D31.V16-level3": "Cause of death",
1085
+ "D31.V18": "ICD-10 130 Cause List (Infants)",
1086
+ "D31.V19-level1": "Census Region",
1087
+ "D31.V19-level2": "Census Division",
1088
+ "D31.V2": "Mother's Bridged Race",
1089
+ "D31.V20": "Medical Attendant",
1090
+ "D31.V21": "Birthplace",
1091
+ "D31.V22": "Delivery Method",
1092
+ "D31.V24": "LMP Gestational Age 11",
1093
+ "D31.V25": "LMP Gestational Age Weekly",
1094
+ "D31.V26-level1": "HHS Region",
1095
+ "D31.V29": "15 Leading Causes of Death (Infants)",
1096
+ "D31.V3": "Sex",
1097
+ "D31.V4": "Mother's Bridged Race/Hispanic Origin",
1098
+ "D31.V5": "Mother's Education",
1099
+ "D31.V6": "LMP Gestational Age 10",
1100
+ "D31.V7": "Month Prenatal Care Began",
1101
+ "D31.V8": "Birth Weight",
1102
+ "D31.V9": "Year of Death"
1103
+ },
1104
+ "D60": {
1105
+ "D60.V1-level1": "Region",
1106
+ "D60.V1-level2": "Division",
1107
+ "D60.V10": "Daily Max Air Temperature",
1108
+ "D60.V12": "Daily Min Air Temperature",
1109
+ "D60.V14": "Daily Max Heat Index",
1110
+ "D60.V2-level1": "State",
1111
+ "D60.V2-level2": "County",
1112
+ "D60.V3": "Year",
1113
+ "D60.V4": "Month",
1114
+ "D60.V6": "Day of Year",
1115
+ "D60.V7-level2": "Month, Year",
1116
+ "D60.V7-level3": "Month Day, Year",
1117
+ "D60.V8": "Day of Month"
1118
+ },
1119
+ "D61": {
1120
+ "D61.V1-level1": "Region",
1121
+ "D61.V1-level2": "Division",
1122
+ "D61.V10": "Day Land Surface Temperature",
1123
+ "D61.V12": "Night Land Surface Temperature",
1124
+ "D61.V2-level1": "State",
1125
+ "D61.V2-level2": "County",
1126
+ "D61.V3": "Year",
1127
+ "D61.V4": "Month",
1128
+ "D61.V6": "Day of Year",
1129
+ "D61.V7-level2": "Month, Year",
1130
+ "D61.V7-level3": "Month Day, Year",
1131
+ "D61.V8": "Day of Month"
1132
+ },
1133
+ "D66": {
1134
+ "D66.V1": "Age of Mother 9",
1135
+ "D66.V10": "Tobacco Use",
1136
+ "D66.V14": "Diabetes",
1137
+ "D66.V154": "2013 Metro/Nonmetro",
1138
+ "D66.V155": "2006 Metro/Nonmetro",
1139
+ "D66.V156": "2013 Urbanization",
1140
+ "D66.V157": "2006 Urbanization",
1141
+ "D66.V158": "2023 Metro/Nonmetro",
1142
+ "D66.V159": "2023 Urbanization",
1143
+ "D66.V16": "Chronic Hypertension",
1144
+ "D66.V17": "Pregnancy-associated Hypertension",
1145
+ "D66.V18": "Eclampsia",
1146
+ "D66.V2": "Mother's Bridged Race",
1147
+ "D66.V20": "Year",
1148
+ "D66.V21-level1": "State",
1149
+ "D66.V21-level2": "County",
1150
+ "D66.V22-level1": "Census Region",
1151
+ "D66.V22-level2": "Census Division",
1152
+ "D66.V23": "LMP Gestational Age 11",
1153
+ "D66.V24": "LMP Gestational Age Weekly",
1154
+ "D66.V25": "Month",
1155
+ "D66.V26": "Weekday",
1156
+ "D66.V27": "Marital Status",
1157
+ "D66.V28": "Live Birth Order",
1158
+ "D66.V29": "Medical Attendant",
1159
+ "D66.V3": "Sex",
1160
+ "D66.V30": "Birthplace",
1161
+ "D66.V31": "Delivery Method",
1162
+ "D66.V32": "OE Gestational Age 10",
1163
+ "D66.V33": "OE Gestational Age 11",
1164
+ "D66.V34": "OE Gestational Age Weekly",
1165
+ "D66.V35": "Infant Birth Weight 14",
1166
+ "D66.V37-level1": "HHS Region",
1167
+ "D66.V38": "Age of Mother 10",
1168
+ "D66.V39": "Age of Mother 13",
1169
+ "D66.V4": "Mother's Expanded Hispanic Origin",
1170
+ "D66.V41": "Infant Birth Weight 100 gram increments",
1171
+ "D66.V42": "Mother's Single Race",
1172
+ "D66.V43": "Mother's Hispanic Origin",
1173
+ "D66.V5": "Mother's Education",
1174
+ "D66.V6": "LMP Gestational Age 10",
1175
+ "D66.V7": "Plurality or Multiple Birth",
1176
+ "D66.V8": "Month Prenatal Care Began",
1177
+ "D66.V9": "Infant Birth Weight 12"
1178
+ },
1179
+ "D69": {
1180
+ "D69.V1": "Age of Mother",
1181
+ "D69.V10-level1": "State",
1182
+ "D69.V10-level2": "County",
1183
+ "D69.V11": "Mother's Marital Status",
1184
+ "D69.V12": "Live Birth Order",
1185
+ "D69.V13": "Age of Infant at Death",
1186
+ "D69.V15": "Plurality or Multiple Birth",
1187
+ "D69.V16-level1": "ICD Chapter",
1188
+ "D69.V16-level2": "ICD Sub-Chapter",
1189
+ "D69.V16-level3": "Cause of death",
1190
+ "D69.V18": "ICD-10 130 Cause List (Infants)",
1191
+ "D69.V19-level1": "Census Region",
1192
+ "D69.V19-level2": "Census Division",
1193
+ "D69.V2": "Mother's Bridged Race",
1194
+ "D69.V20": "Medical Attendant",
1195
+ "D69.V21": "Birthplace",
1196
+ "D69.V22": "Delivery Method",
1197
+ "D69.V24": "LMP Gestational Age 11",
1198
+ "D69.V25": "LMP Gestational Age Weekly",
1199
+ "D69.V26-level1": "HHS Region",
1200
+ "D69.V29": "15 Leading Causes of Death (Infants)",
1201
+ "D69.V3": "Sex",
1202
+ "D69.V30": "OE Gestational Age 10",
1203
+ "D69.V31": "OE Gestational Age 11",
1204
+ "D69.V32": "OE Gestational Age Weekly",
1205
+ "D69.V4": "Mother's Bridged Race/Hispanic Origin",
1206
+ "D69.V42": "Mother's Single Race",
1207
+ "D69.V5": "Mother's Education",
1208
+ "D69.V6": "LMP Gestational Age 10",
1209
+ "D69.V7": "Month Prenatal Care Began",
1210
+ "D69.V8": "Birth Weight",
1211
+ "D69.V9": "Year of Death"
1212
+ },
1213
+ "D73": {
1214
+ "D73.V1-level1": "Region",
1215
+ "D73.V1-level2": "Division",
1216
+ "D73.V10": "Fine Particulate Matter (\u00b5g/m\u00b3)",
1217
+ "D73.V2-level1": "State",
1218
+ "D73.V2-level2": "County",
1219
+ "D73.V3": "Year",
1220
+ "D73.V4": "Month",
1221
+ "D73.V6": "Day of Year",
1222
+ "D73.V7-level2": "Month, Year",
1223
+ "D73.V7-level3": "Month Day, Year",
1224
+ "D73.V8": "Day of Month"
1225
+ },
1226
+ "D74": {
1227
+ "D74.V1": "Year",
1228
+ "D74.V10-level1": "Region",
1229
+ "D74.V10-level2": "Division",
1230
+ "D74.V2-level1": "ICD Chapter",
1231
+ "D74.V2-level2": "ICD Sub-Chapter",
1232
+ "D74.V2-level3": "Cause of death",
1233
+ "D74.V4-level1": "ICD 69 Groups",
1234
+ "D74.V5": "Age Group",
1235
+ "D74.V6": "Infant Age Groups",
1236
+ "D74.V7": "Sex",
1237
+ "D74.V8": "Race",
1238
+ "D74.V9-level1": "State",
1239
+ "D74.V9-level2": "County"
1240
+ },
1241
+ "D76": {
1242
+ "D76.V1-level1": "Year",
1243
+ "D76.V1-level2": "Month",
1244
+ "D76.V10-level1": "Census Region",
1245
+ "D76.V10-level2": "Census Division",
1246
+ "D76.V11": "2006 Urbanization",
1247
+ "D76.V12": "ICD-10 130 Cause List (Infants)",
1248
+ "D76.V17": "Hispanic Origin",
1249
+ "D76.V19": "2013 Urbanization",
1250
+ "D76.V2-level1": "ICD Chapter",
1251
+ "D76.V2-level2": "ICD Sub-Chapter",
1252
+ "D76.V2-level3": "Cause of death",
1253
+ "D76.V20": "Autopsy",
1254
+ "D76.V21": "Place of Death",
1255
+ "D76.V22": "Injury Intent",
1256
+ "D76.V23": "Injury Mechanism & All Other Leading Causes",
1257
+ "D76.V24": "Weekday",
1258
+ "D76.V25-level1": "Drug/Alcohol Induced",
1259
+ "D76.V25-level2": "Drug/Alcohol Induced Cause",
1260
+ "D76.V27-level1": "HHS Region",
1261
+ "D76.V28": "15 Leading Causes of Death",
1262
+ "D76.V29": "15 Leading Causes of Death (Infants)",
1263
+ "D76.V4": "ICD-10 113 Cause List",
1264
+ "D76.V5": "Ten-Year Age Groups",
1265
+ "D76.V51": "Five-Year Age Groups",
1266
+ "D76.V52": "Single-Year Ages",
1267
+ "D76.V6": "Infant Age Groups",
1268
+ "D76.V7": "Sex",
1269
+ "D76.V8": "Race",
1270
+ "D76.V9-level1": "State",
1271
+ "D76.V9-level2": "County"
1272
+ },
1273
+ "D77": {
1274
+ "D77.V1-level1": "Year",
1275
+ "D77.V1-level2": "Month",
1276
+ "D77.V10-level1": "Census Region",
1277
+ "D77.V10-level2": "Census Division",
1278
+ "D77.V11": "2006 Urbanization",
1279
+ "D77.V12": "UCD - ICD-10 130 Cause List (Infants)",
1280
+ "D77.V13-level1": "MCD - ICD Chapter",
1281
+ "D77.V13-level2": "MCD - ICD Sub-Chapter",
1282
+ "D77.V13-level3": "Multiple Cause of death",
1283
+ "D77.V15": "MCD - ICD-10 113 Cause List",
1284
+ "D77.V16": "MCD - ICD-10 130 Cause List (Infants)",
1285
+ "D77.V17": "Hispanic Origin",
1286
+ "D77.V19": "2013 Urbanization",
1287
+ "D77.V2-level1": "UCD - ICD Chapter",
1288
+ "D77.V2-level2": "UCD - ICD Sub-Chapter",
1289
+ "D77.V2-level3": "Underlying Cause of death",
1290
+ "D77.V20": "Autopsy",
1291
+ "D77.V21": "Place of Death",
1292
+ "D77.V22": "UCD - Injury Intent",
1293
+ "D77.V23": "UCD - Injury Mechanism & All Other Leading Causes",
1294
+ "D77.V24": "Weekday",
1295
+ "D77.V25-level1": "UCD - Drug/Alcohol Induced",
1296
+ "D77.V25-level2": "UCD - Drug/Alcohol Induced Cause",
1297
+ "D77.V26-level1": "MCD - Drug/Alcohol Induced",
1298
+ "D77.V26-level2": "MCD - Drug/Alcohol Induced Cause",
1299
+ "D77.V27-level1": "HHS Region",
1300
+ "D77.V28": "UCD - 15 Leading Causes of Death",
1301
+ "D77.V29": "UCD - 15 Leading Causes of Death (Infants)",
1302
+ "D77.V4": "UCD - ICD-10 113 Cause List",
1303
+ "D77.V5": "Ten-Year Age Groups",
1304
+ "D77.V51": "Five-Year Age Groups",
1305
+ "D77.V52": "Single-Year Ages",
1306
+ "D77.V6": "Infant Age Groups",
1307
+ "D77.V7": "Sex",
1308
+ "D77.V8": "Race",
1309
+ "D77.V9-level1": "State",
1310
+ "D77.V9-level2": "County"
1311
+ },
1312
+ "D80": {
1313
+ "D80.V1-level1": "Region",
1314
+ "D80.V1-level2": "Division",
1315
+ "D80.V10": "Daily Sunlight (KJ/m\u00b2)",
1316
+ "D80.V2-level1": "State",
1317
+ "D80.V2-level2": "County",
1318
+ "D80.V3": "Year",
1319
+ "D80.V4": "Month",
1320
+ "D80.V6": "Day of Year",
1321
+ "D80.V7-level2": "Month, Year",
1322
+ "D80.V7-level3": "Month Day, Year",
1323
+ "D80.V8": "Day of Month"
1324
+ },
1325
+ "D81": {
1326
+ "D81.V1-level1": "Region",
1327
+ "D81.V1-level2": "Division",
1328
+ "D81.V10": "Daily Precipitation (mm)",
1329
+ "D81.V2-level1": "State",
1330
+ "D81.V2-level2": "County",
1331
+ "D81.V3": "Year",
1332
+ "D81.V4": "Month",
1333
+ "D81.V6": "Day of Year",
1334
+ "D81.V7-level2": "Month, Year",
1335
+ "D81.V7-level3": "Month Day, Year",
1336
+ "D81.V8": "Day of Month"
1337
+ }
1338
+ }