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,1599 @@
1
+ {
2
+ "datasets": [
3
+ {
4
+ "id": "D176",
5
+ "title": "Provisional Mortality Statistics",
6
+ "topic": "Mortality",
7
+ "subject": "Track deaths by all causes with weekly updates. Covers COVID-19, opioid overdoses, heart disease, cancer, suicide, maternal mortality, and more. The go-to dataset for recent mortality trends.",
8
+ "year_start": 2018,
9
+ "year_end": null,
10
+ "year_range_label": "2018\u2013present",
11
+ "tags": [
12
+ "mortality",
13
+ "death",
14
+ "provisional",
15
+ "opioid",
16
+ "covid",
17
+ "suicide",
18
+ "cancer",
19
+ "heart disease",
20
+ "drug",
21
+ "fentanyl",
22
+ "overdose",
23
+ "weekly",
24
+ "recent"
25
+ ],
26
+ "measures": [
27
+ {
28
+ "code": "D176.M1",
29
+ "label": "Deaths"
30
+ },
31
+ {
32
+ "code": "D176.M2",
33
+ "label": "Population"
34
+ },
35
+ {
36
+ "code": "D176.M3",
37
+ "label": "Crude Rate (per 100k)"
38
+ },
39
+ {
40
+ "code": "D176.M9",
41
+ "label": "Age-Adjusted Rate"
42
+ }
43
+ ],
44
+ "key_groupings": [
45
+ "Year / Month / Quarter / Week",
46
+ "Residence State / County",
47
+ "ICD-10 Chapter (cause of death)",
48
+ "ICD-10 Subcategory",
49
+ "Drug/Alcohol cause (MCD)",
50
+ "Age (10-yr, 5-yr bands)",
51
+ "Sex",
52
+ "Race/Ethnicity (bridged)",
53
+ "Urbanization",
54
+ "HHS Region / Census Region"
55
+ ],
56
+ "has_template": true,
57
+ "has_aar": true,
58
+ "notes": "Provisional \u2014 subject to revision. Updated weekly. Most current mortality data available."
59
+ },
60
+ {
61
+ "id": "D157",
62
+ "title": "Final Mortality, Single Race (MCD + UCD)",
63
+ "topic": "Mortality",
64
+ "subject": "Final (non-provisional) mortality statistics with single-race classification for 2018-2023. Includes both underlying and multiple causes of death. Use when you need finalized mortality counts with detailed race/ethnicity breakdown.",
65
+ "year_start": 2018,
66
+ "year_end": 2023,
67
+ "year_range_label": "2018\u20132023",
68
+ "tags": [
69
+ "mortality",
70
+ "death",
71
+ "final",
72
+ "race",
73
+ "single-race",
74
+ "multiple cause",
75
+ "underlying cause"
76
+ ],
77
+ "measures": [
78
+ {
79
+ "code": "D157.M1",
80
+ "label": "Deaths"
81
+ },
82
+ {
83
+ "code": "D157.M2",
84
+ "label": "Population"
85
+ },
86
+ {
87
+ "code": "D157.M3",
88
+ "label": "Crude Rate"
89
+ },
90
+ {
91
+ "code": "D157.M9",
92
+ "label": "Age-Adjusted Rate"
93
+ }
94
+ ],
95
+ "key_groupings": [
96
+ "Year / Month",
97
+ "State / County",
98
+ "ICD-10 Cause (UCD or MCD)",
99
+ "Age",
100
+ "Sex",
101
+ "Single Race / Ethnicity",
102
+ "Urbanization"
103
+ ],
104
+ "has_template": true,
105
+ "has_aar": true,
106
+ "notes": "Final data. Single-race classification per 1997 OMB standards."
107
+ },
108
+ {
109
+ "id": "D158",
110
+ "title": "Underlying Cause of Death, Single Race",
111
+ "topic": "Mortality",
112
+ "subject": "Final mortality data for 2018-2023 focused on underlying cause of death with single-race classification. Best for maternal mortality, cause-specific trends, and race-stratified analysis without multiple-cause filters.",
113
+ "year_start": 2018,
114
+ "year_end": 2023,
115
+ "year_range_label": "2018\u20132023",
116
+ "tags": [
117
+ "mortality",
118
+ "death",
119
+ "final",
120
+ "underlying cause",
121
+ "maternal",
122
+ "race",
123
+ "single-race"
124
+ ],
125
+ "measures": [
126
+ {
127
+ "code": "D158.M1",
128
+ "label": "Deaths"
129
+ },
130
+ {
131
+ "code": "D158.M2",
132
+ "label": "Population"
133
+ },
134
+ {
135
+ "code": "D158.M3",
136
+ "label": "Crude Rate"
137
+ },
138
+ {
139
+ "code": "D158.M9",
140
+ "label": "Age-Adjusted Rate"
141
+ }
142
+ ],
143
+ "key_groupings": [
144
+ "Year / Month",
145
+ "State / County",
146
+ "ICD-10 Underlying Cause",
147
+ "Age",
148
+ "Sex",
149
+ "Single Race / Ethnicity"
150
+ ],
151
+ "has_template": true,
152
+ "has_aar": true,
153
+ "notes": "No MCD filters available. Use D157 if you need multiple-cause filtering."
154
+ },
155
+ {
156
+ "id": "D77",
157
+ "title": "Multiple Cause of Death",
158
+ "topic": "Mortality",
159
+ "subject": "Historical mortality with both underlying and multiple causes of death for 1999-2020. Standard dataset for drug overdose deaths, where the drug appears anywhere on the death certificate. Final, bridged-race data.",
160
+ "year_start": 1999,
161
+ "year_end": 2020,
162
+ "year_range_label": "1999\u20132020",
163
+ "tags": [
164
+ "mortality",
165
+ "death",
166
+ "historical",
167
+ "multiple cause",
168
+ "drug",
169
+ "opioid",
170
+ "heroin",
171
+ "fentanyl",
172
+ "cocaine",
173
+ "meth",
174
+ "ICD-10",
175
+ "bridged-race"
176
+ ],
177
+ "measures": [
178
+ {
179
+ "code": "D77.M1",
180
+ "label": "Deaths"
181
+ },
182
+ {
183
+ "code": "D77.M2",
184
+ "label": "Population"
185
+ },
186
+ {
187
+ "code": "D77.M3",
188
+ "label": "Crude Rate"
189
+ },
190
+ {
191
+ "code": "D77.M9",
192
+ "label": "Age-Adjusted Rate"
193
+ }
194
+ ],
195
+ "key_groupings": [
196
+ "Year / Month",
197
+ "State / County",
198
+ "ICD-10 Chapter (UCD)",
199
+ "MCD Drug/Alcohol Codes",
200
+ "Age (10-yr, 5-yr bands)",
201
+ "Sex",
202
+ "Race (bridged)",
203
+ "Urbanization"
204
+ ],
205
+ "has_template": true,
206
+ "has_aar": true,
207
+ "notes": "Pair with D176 (2021+) for full trend since 1999. ICD-10 coding."
208
+ },
209
+ {
210
+ "id": "D76",
211
+ "title": "Underlying Cause of Death",
212
+ "topic": "Mortality",
213
+ "subject": "Historical mortality by single underlying cause of death for 1999-2020. Useful for suicide, cancer, heart disease, and cause-specific trends. Final ICD-10 data, no multiple-cause filters.",
214
+ "year_start": 1999,
215
+ "year_end": 2020,
216
+ "year_range_label": "1999\u20132020",
217
+ "tags": [
218
+ "mortality",
219
+ "death",
220
+ "historical",
221
+ "underlying cause",
222
+ "suicide",
223
+ "cancer",
224
+ "heart disease",
225
+ "ICD-10"
226
+ ],
227
+ "measures": [
228
+ {
229
+ "code": "D76.M1",
230
+ "label": "Deaths"
231
+ },
232
+ {
233
+ "code": "D76.M2",
234
+ "label": "Population"
235
+ },
236
+ {
237
+ "code": "D76.M3",
238
+ "label": "Crude Rate"
239
+ },
240
+ {
241
+ "code": "D76.M9",
242
+ "label": "Age-Adjusted Rate"
243
+ }
244
+ ],
245
+ "key_groupings": [
246
+ "Year / Month",
247
+ "State / County",
248
+ "ICD-10 Chapter",
249
+ "ICD-10 Cause Code",
250
+ "Age",
251
+ "Sex",
252
+ "Race (bridged)"
253
+ ],
254
+ "has_template": true,
255
+ "has_aar": true,
256
+ "notes": "No MCD (drug-involvement) filters. Use D77 for drug overdose counts."
257
+ },
258
+ {
259
+ "id": "D141",
260
+ "title": "Multiple Cause of Death with US-Mexico Border Regions",
261
+ "topic": "Mortality",
262
+ "subject": "Like D77 (MCD 1999-2020) but adds US-Mexico border region and metropolitan geography. Useful for border health, rural-urban disparities, and geographic analyses of drug or cause-specific deaths.",
263
+ "year_start": 1999,
264
+ "year_end": 2020,
265
+ "year_range_label": "1999\u20132020",
266
+ "tags": [
267
+ "mortality",
268
+ "death",
269
+ "multiple cause",
270
+ "border",
271
+ "geography",
272
+ "metro",
273
+ "rural",
274
+ "urban",
275
+ "ICD-10"
276
+ ],
277
+ "measures": [
278
+ {
279
+ "code": "D141.M1",
280
+ "label": "Deaths"
281
+ },
282
+ {
283
+ "code": "D141.M2",
284
+ "label": "Population"
285
+ },
286
+ {
287
+ "code": "D141.M3",
288
+ "label": "Crude Rate"
289
+ },
290
+ {
291
+ "code": "D141.M9",
292
+ "label": "Age-Adjusted Rate"
293
+ }
294
+ ],
295
+ "key_groupings": [
296
+ "Year / Month",
297
+ "State / County",
298
+ "US-Mexico Border Region",
299
+ "Metropolitan Area",
300
+ "MCD Drug/Alcohol Codes",
301
+ "Age",
302
+ "Sex",
303
+ "Race"
304
+ ],
305
+ "has_template": true,
306
+ "has_aar": true,
307
+ "notes": "Extends D77 with additional geographic dimensions."
308
+ },
309
+ {
310
+ "id": "D140",
311
+ "title": "Compressed Mortality (ICD-10)",
312
+ "topic": "Mortality",
313
+ "subject": "Compressed mortality data using ICD-10 codes for 1999-2016. Fewer variables than D77 but covers the same period. Useful when you need a simpler query structure for broad cause-of-death analysis.",
314
+ "year_start": 1999,
315
+ "year_end": 2016,
316
+ "year_range_label": "1999\u20132016",
317
+ "tags": [
318
+ "mortality",
319
+ "death",
320
+ "compressed",
321
+ "ICD-10",
322
+ "historical"
323
+ ],
324
+ "measures": [
325
+ {
326
+ "code": "D140.M1",
327
+ "label": "Deaths"
328
+ },
329
+ {
330
+ "code": "D140.M2",
331
+ "label": "Population"
332
+ },
333
+ {
334
+ "code": "D140.M3",
335
+ "label": "Crude Rate"
336
+ }
337
+ ],
338
+ "key_groupings": [
339
+ "Year",
340
+ "State",
341
+ "ICD-10 Cause",
342
+ "Age",
343
+ "Sex",
344
+ "Race"
345
+ ],
346
+ "has_template": true,
347
+ "has_aar": false,
348
+ "notes": "Fewer variables than D77. No MCD filters."
349
+ },
350
+ {
351
+ "id": "D16",
352
+ "title": "Compressed Mortality (ICD-9)",
353
+ "topic": "Mortality",
354
+ "subject": "Mortality using ICD-9 codes from 1979-1998. Essential for long-term trends \u2014 heart disease, cancer, HIV/AIDS, accidents \u2014 before ICD-10 was adopted in 1999.",
355
+ "year_start": 1979,
356
+ "year_end": 1998,
357
+ "year_range_label": "1979\u20131998",
358
+ "tags": [
359
+ "mortality",
360
+ "death",
361
+ "historical",
362
+ "ICD-9",
363
+ "1980s",
364
+ "1990s",
365
+ "HIV",
366
+ "AIDS",
367
+ "long-term"
368
+ ],
369
+ "measures": [
370
+ {
371
+ "code": "D16.M1",
372
+ "label": "Deaths"
373
+ },
374
+ {
375
+ "code": "D16.M2",
376
+ "label": "Population"
377
+ },
378
+ {
379
+ "code": "D16.M3",
380
+ "label": "Crude Rate"
381
+ }
382
+ ],
383
+ "key_groupings": [
384
+ "Year",
385
+ "State",
386
+ "ICD-9 Cause",
387
+ "Age",
388
+ "Sex",
389
+ "Race"
390
+ ],
391
+ "has_template": true,
392
+ "has_aar": false,
393
+ "notes": "ICD-9 coding system. Pair with D77/D176 for 1979\u2013present trends."
394
+ },
395
+ {
396
+ "id": "D74",
397
+ "title": "Compressed Mortality (ICD-8)",
398
+ "topic": "Mortality",
399
+ "subject": "Pre-ICD-9 mortality data from 1968-1978 using ICD-8 codes. For historical context: the polio era's tail, early cardiovascular mortality, before modern trauma care.",
400
+ "year_start": 1968,
401
+ "year_end": 1978,
402
+ "year_range_label": "1968\u20131978",
403
+ "tags": [
404
+ "mortality",
405
+ "death",
406
+ "historical",
407
+ "ICD-8",
408
+ "1970s",
409
+ "1960s"
410
+ ],
411
+ "measures": [
412
+ {
413
+ "code": "D74.M1",
414
+ "label": "Deaths"
415
+ },
416
+ {
417
+ "code": "D74.M2",
418
+ "label": "Population"
419
+ },
420
+ {
421
+ "code": "D74.M3",
422
+ "label": "Crude Rate"
423
+ }
424
+ ],
425
+ "key_groupings": [
426
+ "Year",
427
+ "State",
428
+ "ICD-8 Cause",
429
+ "Age",
430
+ "Sex",
431
+ "Race"
432
+ ],
433
+ "has_template": true,
434
+ "has_aar": false,
435
+ "notes": "ICD-8 coding. Use D16 for 1979+ comparisons."
436
+ },
437
+ {
438
+ "id": "D69",
439
+ "title": "Linked Birth / Infant Death Records",
440
+ "topic": "Infant Mortality",
441
+ "subject": "Links birth certificates to infant death records to track neonatal and post-neonatal mortality. Covers causes of infant death, gestational age, birth weight, maternal factors, and birth outcomes.",
442
+ "year_start": 2007,
443
+ "year_end": 2023,
444
+ "year_range_label": "2007\u20132023",
445
+ "tags": [
446
+ "infant mortality",
447
+ "birth",
448
+ "neonatal",
449
+ "SIDS",
450
+ "preterm",
451
+ "low birth weight",
452
+ "linked",
453
+ "maternal"
454
+ ],
455
+ "measures": [
456
+ {
457
+ "code": "D69.M1",
458
+ "label": "Deaths"
459
+ },
460
+ {
461
+ "code": "D69.M2",
462
+ "label": "Births"
463
+ },
464
+ {
465
+ "code": "D69.M3",
466
+ "label": "Mortality Rate (per 1,000 live births)"
467
+ }
468
+ ],
469
+ "key_groupings": [
470
+ "Year",
471
+ "State",
472
+ "Cause of death (ICD-10)",
473
+ "Age at death (neonatal/post-neonatal)",
474
+ "Gestational age",
475
+ "Birth weight",
476
+ "Sex",
477
+ "Race/Ethnicity",
478
+ "Maternal age"
479
+ ],
480
+ "has_template": true,
481
+ "has_aar": false,
482
+ "notes": "Rate = deaths per 1,000 live births. No AAR. Use D159 for expanded race/ethnicity detail."
483
+ },
484
+ {
485
+ "id": "D159",
486
+ "title": "Linked Birth / Infant Death Records, Expanded",
487
+ "topic": "Infant Mortality",
488
+ "subject": "Like D69 but with expanded race/ethnicity detail and additional demographic variables. Best for detailed analysis of infant mortality disparities by race, Hispanic origin, and maternal characteristics.",
489
+ "year_start": 2017,
490
+ "year_end": 2023,
491
+ "year_range_label": "2017\u20132023",
492
+ "tags": [
493
+ "infant mortality",
494
+ "birth",
495
+ "neonatal",
496
+ "race",
497
+ "expanded",
498
+ "SIDS",
499
+ "preterm"
500
+ ],
501
+ "measures": [
502
+ {
503
+ "code": "D159.M1",
504
+ "label": "Deaths"
505
+ },
506
+ {
507
+ "code": "D159.M2",
508
+ "label": "Births"
509
+ },
510
+ {
511
+ "code": "D159.M3",
512
+ "label": "Mortality Rate (per 1,000 live births)"
513
+ }
514
+ ],
515
+ "key_groupings": [
516
+ "Year",
517
+ "State",
518
+ "Cause of death",
519
+ "Gestational age",
520
+ "Birth weight",
521
+ "Single Race / Ethnicity (detailed)",
522
+ "Maternal age / education"
523
+ ],
524
+ "has_template": true,
525
+ "has_aar": false,
526
+ "notes": "Expanded demographic detail vs D69. Only available from 2017."
527
+ },
528
+ {
529
+ "id": "D31",
530
+ "title": "Linked Birth / Infant Death Records (2003\u20132006)",
531
+ "topic": "Infant Mortality",
532
+ "subject": "Linked birth/infant death data for 2003-2006. Same concept as D69 but for earlier years. Use for historical infant mortality trends.",
533
+ "year_start": 2003,
534
+ "year_end": 2006,
535
+ "year_range_label": "2003\u20132006",
536
+ "tags": [
537
+ "infant mortality",
538
+ "birth",
539
+ "neonatal",
540
+ "historical",
541
+ "linked"
542
+ ],
543
+ "measures": [
544
+ {
545
+ "code": "D31.M1",
546
+ "label": "Deaths"
547
+ },
548
+ {
549
+ "code": "D31.M3",
550
+ "label": "Mortality Rate"
551
+ }
552
+ ],
553
+ "key_groupings": [
554
+ "Year",
555
+ "State",
556
+ "Cause",
557
+ "Age at death",
558
+ "Race",
559
+ "Gestational age"
560
+ ],
561
+ "has_template": true,
562
+ "has_aar": false,
563
+ "notes": "Pair with D18 (1999-2002) and D69 (2007+) for long-term trends."
564
+ },
565
+ {
566
+ "id": "D18",
567
+ "title": "Linked Birth / Infant Death Records (1999\u20132002)",
568
+ "topic": "Infant Mortality",
569
+ "subject": "Linked birth/infant death data for 1999-2002.",
570
+ "year_start": 1999,
571
+ "year_end": 2002,
572
+ "year_range_label": "1999\u20132002",
573
+ "tags": [
574
+ "infant mortality",
575
+ "birth",
576
+ "neonatal",
577
+ "historical",
578
+ "linked"
579
+ ],
580
+ "measures": [
581
+ {
582
+ "code": "D18.M1",
583
+ "label": "Deaths"
584
+ },
585
+ {
586
+ "code": "D18.M3",
587
+ "label": "Mortality Rate"
588
+ }
589
+ ],
590
+ "key_groupings": [
591
+ "Year",
592
+ "State",
593
+ "Cause",
594
+ "Age at death",
595
+ "Race"
596
+ ],
597
+ "has_template": true,
598
+ "has_aar": false,
599
+ "notes": "Earliest linked birth/infant death records available."
600
+ },
601
+ {
602
+ "id": "D23",
603
+ "title": "Linked Birth / Infant Death Records (1995\u20131998)",
604
+ "topic": "Infant Mortality",
605
+ "subject": "Linked birth/infant death data for 1995-1998.",
606
+ "year_start": 1995,
607
+ "year_end": 1998,
608
+ "year_range_label": "1995\u20131998",
609
+ "tags": [
610
+ "infant mortality",
611
+ "birth",
612
+ "neonatal",
613
+ "historical",
614
+ "linked"
615
+ ],
616
+ "measures": [
617
+ {
618
+ "code": "D23.M1",
619
+ "label": "Deaths"
620
+ },
621
+ {
622
+ "code": "D23.M3",
623
+ "label": "Mortality Rate"
624
+ }
625
+ ],
626
+ "key_groupings": [
627
+ "Year",
628
+ "State",
629
+ "Cause",
630
+ "Age at death",
631
+ "Race"
632
+ ],
633
+ "has_template": true,
634
+ "has_aar": false,
635
+ "notes": "Use with D18, D31, D69 to build 1995-present infant mortality trend."
636
+ },
637
+ {
638
+ "id": "D66",
639
+ "title": "Natality",
640
+ "topic": "Natality",
641
+ "subject": "Live births data covering birth rates, fertility rates, maternal age, prenatal care, gestational age, birth weight, cesarean delivery, smoking during pregnancy, and other birth outcomes. The main dataset for birth statistics.",
642
+ "year_start": 2007,
643
+ "year_end": 2024,
644
+ "year_range_label": "2007\u20132024",
645
+ "tags": [
646
+ "birth",
647
+ "natality",
648
+ "fertility",
649
+ "maternal",
650
+ "prenatal",
651
+ "cesarean",
652
+ "gestational age",
653
+ "birth weight",
654
+ "obstetric"
655
+ ],
656
+ "measures": [
657
+ {
658
+ "code": "D66.M1",
659
+ "label": "Births"
660
+ },
661
+ {
662
+ "code": "D66.M3",
663
+ "label": "Birth Rate (per 1,000 pop)"
664
+ },
665
+ {
666
+ "code": "D66.M10",
667
+ "label": "Fertility Rate (per 1,000 women 15-44)"
668
+ }
669
+ ],
670
+ "key_groupings": [
671
+ "Year / Month",
672
+ "State / County",
673
+ "Mother's Age",
674
+ "Race / Hispanic Origin",
675
+ "Birth order",
676
+ "Gestational age",
677
+ "Birth weight",
678
+ "Delivery method (C-section)",
679
+ "Prenatal care",
680
+ "Education",
681
+ "Marital status"
682
+ ],
683
+ "has_template": true,
684
+ "has_aar": false,
685
+ "notes": "No AAR. Rate = births per 1,000 population. Use D149 for expanded race detail."
686
+ },
687
+ {
688
+ "id": "D149",
689
+ "title": "Natality, Expanded",
690
+ "topic": "Natality",
691
+ "subject": "Like D66 but with detailed single-race classification and additional demographic variables. Best for analyzing birth disparities by race and ethnicity, or when you need variables not available in D66.",
692
+ "year_start": 2016,
693
+ "year_end": 2024,
694
+ "year_range_label": "2016\u20132024",
695
+ "tags": [
696
+ "birth",
697
+ "natality",
698
+ "fertility",
699
+ "race",
700
+ "expanded",
701
+ "maternal",
702
+ "disparity"
703
+ ],
704
+ "measures": [
705
+ {
706
+ "code": "D149.M1",
707
+ "label": "Births"
708
+ },
709
+ {
710
+ "code": "D149.M3",
711
+ "label": "Birth Rate"
712
+ }
713
+ ],
714
+ "key_groupings": [
715
+ "Year / Month",
716
+ "State",
717
+ "Single Race / Ethnicity (detailed)",
718
+ "Mother's Age",
719
+ "Gestational age",
720
+ "Birth weight"
721
+ ],
722
+ "has_template": true,
723
+ "has_aar": false,
724
+ "notes": "Expanded race detail. Only from 2016. Use D66 for 2007+ without race expansion."
725
+ },
726
+ {
727
+ "id": "D192",
728
+ "title": "Provisional Natality",
729
+ "topic": "Natality",
730
+ "subject": "Provisional (preliminary) birth data updated monthly. Use for the most current birth trend data \u2014 national fertility rates, birth counts by state.",
731
+ "year_start": 2023,
732
+ "year_end": null,
733
+ "year_range_label": "2023\u2013present",
734
+ "tags": [
735
+ "birth",
736
+ "natality",
737
+ "fertility",
738
+ "provisional",
739
+ "recent",
740
+ "monthly"
741
+ ],
742
+ "measures": [
743
+ {
744
+ "code": "D192.M1",
745
+ "label": "Births"
746
+ },
747
+ {
748
+ "code": "D192.M3",
749
+ "label": "Birth Rate"
750
+ }
751
+ ],
752
+ "key_groupings": [
753
+ "Year / Month",
754
+ "State"
755
+ ],
756
+ "has_template": true,
757
+ "has_aar": false,
758
+ "notes": "Very limited grouping options vs D66. Use for latest provisional counts only."
759
+ },
760
+ {
761
+ "id": "D27",
762
+ "title": "Natality (2003\u20132006)",
763
+ "topic": "Natality",
764
+ "subject": "Live birth data for 2003-2006. Use for historical birth trends.",
765
+ "year_start": 2003,
766
+ "year_end": 2006,
767
+ "year_range_label": "2003\u20132006",
768
+ "tags": [
769
+ "birth",
770
+ "natality",
771
+ "historical",
772
+ "fertility",
773
+ "maternal"
774
+ ],
775
+ "measures": [
776
+ {
777
+ "code": "D27.M1",
778
+ "label": "Births"
779
+ },
780
+ {
781
+ "code": "D27.M3",
782
+ "label": "Birth Rate"
783
+ }
784
+ ],
785
+ "key_groupings": [
786
+ "Year",
787
+ "State",
788
+ "Mother's Age",
789
+ "Race",
790
+ "Gestational age"
791
+ ],
792
+ "has_template": true,
793
+ "has_aar": false,
794
+ "notes": "Pair with D66 for 2003-present trends."
795
+ },
796
+ {
797
+ "id": "D10",
798
+ "title": "Natality (1995\u20132002)",
799
+ "topic": "Natality",
800
+ "subject": "Live birth data for 1995-2002. Use for historical birth trends predating D27.",
801
+ "year_start": 1995,
802
+ "year_end": 2002,
803
+ "year_range_label": "1995\u20132002",
804
+ "tags": [
805
+ "birth",
806
+ "natality",
807
+ "historical",
808
+ "fertility",
809
+ "maternal"
810
+ ],
811
+ "measures": [
812
+ {
813
+ "code": "D10.M1",
814
+ "label": "Births"
815
+ },
816
+ {
817
+ "code": "D10.M3",
818
+ "label": "Birth Rate"
819
+ }
820
+ ],
821
+ "key_groupings": [
822
+ "Year",
823
+ "State",
824
+ "Mother's Age",
825
+ "Race"
826
+ ],
827
+ "has_template": true,
828
+ "has_aar": false,
829
+ "notes": "Earliest natality data. Use with D27 and D66 for 1995-present."
830
+ },
831
+ {
832
+ "id": "D8",
833
+ "title": "VAERS \u2014 Vaccine Adverse Event Reporting System",
834
+ "topic": "Vaccine Safety",
835
+ "subject": "Reports of adverse events following vaccination from 1990 to present. Counts include deaths, hospitalizations, life-threatening reactions, and other outcomes reported after COVID-19, flu, MMR, and other vaccines. Self-reported \u2014 not evidence of causation.",
836
+ "year_start": 1990,
837
+ "year_end": null,
838
+ "year_range_label": "1990\u2013present",
839
+ "tags": [
840
+ "vaccine",
841
+ "adverse event",
842
+ "VAERS",
843
+ "COVID vaccine",
844
+ "flu vaccine",
845
+ "MMR",
846
+ "safety",
847
+ "reporting",
848
+ "reaction"
849
+ ],
850
+ "measures": [
851
+ {
852
+ "code": "D8.M1",
853
+ "label": "Events (count of adverse event reports)"
854
+ },
855
+ {
856
+ "code": "D8.M2",
857
+ "label": "Reports"
858
+ }
859
+ ],
860
+ "key_groupings": [
861
+ "Vaccine type (broad: COVID19, FLU, MMR, etc.)",
862
+ "Specific vaccine product",
863
+ "Symptom (MedDRA hierarchy)",
864
+ "Year received / Year reported",
865
+ "Age group",
866
+ "Sex",
867
+ "State",
868
+ "Event category (Death, Hospitalized, Life Threatening)",
869
+ "Serious (Yes/No)"
870
+ ],
871
+ "has_template": true,
872
+ "has_aar": false,
873
+ "notes": "Counts REPORTS, not incidence. Not evidence of causation. Passive surveillance system \u2014 reporting is voluntary."
874
+ },
875
+ {
876
+ "id": "D130",
877
+ "title": "NNDSS Annual Summary Data",
878
+ "topic": "Infectious Disease",
879
+ "subject": "Nationally Notifiable Disease Surveillance System (NNDSS) data on reportable infectious diseases including tick-borne diseases (Lyme, Rocky Mountain spotted fever, anaplasmosis, ehrlichiosis), STIs, measles, and more.",
880
+ "year_start": 2016,
881
+ "year_end": 2023,
882
+ "year_range_label": "2016\u20132023",
883
+ "tags": [
884
+ "infectious disease",
885
+ "notifiable",
886
+ "NNDSS",
887
+ "tick-borne",
888
+ "Lyme disease",
889
+ "Rocky Mountain spotted fever",
890
+ "STI",
891
+ "measles",
892
+ "surveillance"
893
+ ],
894
+ "measures": [
895
+ {
896
+ "code": "D130.M1",
897
+ "label": "Cases"
898
+ }
899
+ ],
900
+ "key_groupings": [
901
+ "Year",
902
+ "State",
903
+ "Disease"
904
+ ],
905
+ "has_template": false,
906
+ "has_aar": false,
907
+ "notes": "NNDSS annual summary. Bundled query covers tick-borne diseases 2016-2023."
908
+ },
909
+ {
910
+ "id": "D104",
911
+ "title": "Number of Heat Wave Days",
912
+ "topic": "Environment",
913
+ "subject": "Annual count of heat wave days (May-September) by county from 1981-2010. Derived from NLDAS climate data. Use to study climate-health connections and geographic heat exposure patterns.",
914
+ "year_start": 1981,
915
+ "year_end": 2010,
916
+ "year_range_label": "1981\u20132010",
917
+ "tags": [
918
+ "environment",
919
+ "heat wave",
920
+ "climate",
921
+ "temperature",
922
+ "county",
923
+ "summer",
924
+ "heat stress"
925
+ ],
926
+ "measures": [
927
+ {
928
+ "code": "D104.M1",
929
+ "label": "Heat Wave Days (mean)"
930
+ },
931
+ {
932
+ "code": "D104.M2",
933
+ "label": "Heat Wave Days (min)"
934
+ },
935
+ {
936
+ "code": "D104.M3",
937
+ "label": "Heat Wave Days (max)"
938
+ }
939
+ ],
940
+ "key_groupings": [
941
+ "Year",
942
+ "State / County"
943
+ ],
944
+ "has_template": true,
945
+ "has_aar": false,
946
+ "notes": "No age-adjusted rates. Geographic / temporal summary statistics."
947
+ },
948
+ {
949
+ "id": "D60",
950
+ "title": "NLDAS Daily Air Temperatures and Heat Index",
951
+ "topic": "Environment",
952
+ "subject": "Daily minimum, mean, and maximum temperature plus heat index by county, 1979-2011, from the North American Land Data Assimilation System (NLDAS). Use for climate-health linkage studies.",
953
+ "year_start": 1979,
954
+ "year_end": 2011,
955
+ "year_range_label": "1979\u20132011",
956
+ "tags": [
957
+ "environment",
958
+ "temperature",
959
+ "heat index",
960
+ "climate",
961
+ "NLDAS",
962
+ "county",
963
+ "weather"
964
+ ],
965
+ "measures": [
966
+ {
967
+ "code": "D60.M1",
968
+ "label": "Min Temperature"
969
+ },
970
+ {
971
+ "code": "D60.M2",
972
+ "label": "Mean Temperature"
973
+ },
974
+ {
975
+ "code": "D60.M3",
976
+ "label": "Max Temperature"
977
+ },
978
+ {
979
+ "code": "D60.M4",
980
+ "label": "Heat Index"
981
+ }
982
+ ],
983
+ "key_groupings": [
984
+ "Year / Month",
985
+ "State / County"
986
+ ],
987
+ "has_template": true,
988
+ "has_aar": false,
989
+ "notes": "Statistical summaries (mean, min, max, CI). Not mortality data."
990
+ },
991
+ {
992
+ "id": "D80",
993
+ "title": "NLDAS Daily Sunlight",
994
+ "topic": "Environment",
995
+ "subject": "Daily solar radiation (KJ/m\u00b2) by county, 1979-2011. From NLDAS. Useful for vitamin D research, seasonal affective studies, and environmental health analyses.",
996
+ "year_start": 1979,
997
+ "year_end": 2011,
998
+ "year_range_label": "1979\u20132011",
999
+ "tags": [
1000
+ "environment",
1001
+ "sunlight",
1002
+ "solar radiation",
1003
+ "climate",
1004
+ "NLDAS",
1005
+ "county"
1006
+ ],
1007
+ "measures": [
1008
+ {
1009
+ "code": "D80.M1",
1010
+ "label": "Sunlight KJ/m\u00b2"
1011
+ }
1012
+ ],
1013
+ "key_groupings": [
1014
+ "Year / Month",
1015
+ "State / County"
1016
+ ],
1017
+ "has_template": true,
1018
+ "has_aar": false,
1019
+ "notes": "Solar radiation data. Not mortality."
1020
+ },
1021
+ {
1022
+ "id": "D81",
1023
+ "title": "NLDAS Daily Precipitation",
1024
+ "topic": "Environment",
1025
+ "subject": "Daily precipitation (mm) by county, 1979-2011. From NLDAS. Use for climate-health linkage, flooding risk analysis, or environmental exposure studies.",
1026
+ "year_start": 1979,
1027
+ "year_end": 2011,
1028
+ "year_range_label": "1979\u20132011",
1029
+ "tags": [
1030
+ "environment",
1031
+ "precipitation",
1032
+ "rain",
1033
+ "climate",
1034
+ "NLDAS",
1035
+ "county",
1036
+ "flooding"
1037
+ ],
1038
+ "measures": [
1039
+ {
1040
+ "code": "D81.M1",
1041
+ "label": "Precipitation (mm)"
1042
+ }
1043
+ ],
1044
+ "key_groupings": [
1045
+ "Year / Month",
1046
+ "State / County"
1047
+ ],
1048
+ "has_template": true,
1049
+ "has_aar": false,
1050
+ "notes": "Precipitation data. Not mortality."
1051
+ },
1052
+ {
1053
+ "id": "D61",
1054
+ "title": "MODIS Land Surface Temperature",
1055
+ "topic": "Environment",
1056
+ "subject": "Satellite-derived land surface temperature by county, 2003-2008, from MODIS Terra. Use for urban heat island studies, climate-health research, and geographic thermal exposure analysis.",
1057
+ "year_start": 2003,
1058
+ "year_end": 2008,
1059
+ "year_range_label": "2003\u20132008",
1060
+ "tags": [
1061
+ "environment",
1062
+ "temperature",
1063
+ "satellite",
1064
+ "MODIS",
1065
+ "land surface",
1066
+ "urban heat island",
1067
+ "county"
1068
+ ],
1069
+ "measures": [
1070
+ {
1071
+ "code": "D61.M1",
1072
+ "label": "Land Surface Temperature"
1073
+ }
1074
+ ],
1075
+ "key_groupings": [
1076
+ "Year",
1077
+ "State / County"
1078
+ ],
1079
+ "has_template": true,
1080
+ "has_aar": false,
1081
+ "notes": "Satellite-derived. Shorter time range than NLDAS datasets."
1082
+ },
1083
+ {
1084
+ "id": "D73",
1085
+ "title": "Fine Particulate Matter PM2.5",
1086
+ "topic": "Environment",
1087
+ "subject": "Annual county-level fine particulate matter (PM2.5 \u00b5g/m\u00b3) concentrations, 2003-2011. PM2.5 is the key air pollutant linked to respiratory and cardiovascular mortality. Use to study air quality and health outcomes.",
1088
+ "year_start": 2003,
1089
+ "year_end": 2011,
1090
+ "year_range_label": "2003\u20132011",
1091
+ "tags": [
1092
+ "environment",
1093
+ "air quality",
1094
+ "PM2.5",
1095
+ "particulate matter",
1096
+ "pollution",
1097
+ "respiratory",
1098
+ "cardiovascular",
1099
+ "county"
1100
+ ],
1101
+ "measures": [
1102
+ {
1103
+ "code": "D73.M1",
1104
+ "label": "PM2.5 Mean (\u00b5g/m\u00b3)"
1105
+ },
1106
+ {
1107
+ "code": "D73.M2",
1108
+ "label": "PM2.5 Min"
1109
+ },
1110
+ {
1111
+ "code": "D73.M3",
1112
+ "label": "PM2.5 Max"
1113
+ }
1114
+ ],
1115
+ "key_groupings": [
1116
+ "Year",
1117
+ "State / County"
1118
+ ],
1119
+ "has_template": true,
1120
+ "has_aar": false,
1121
+ "notes": "Air quality data. Use with mortality data for pollution-health linkage studies."
1122
+ },
1123
+ {
1124
+ "id": "D205",
1125
+ "title": "US Cancer Statistics \u2014 Incidence",
1126
+ "topic": "Cancer",
1127
+ "subject": "Cancer incidence (new case counts and rates) for all cancer sites from 1999 to 2022, covering all US states plus Puerto Rico. Track breast, lung, colorectal, prostate, and 100+ other cancer types. Break down by state, age, sex, race, and year.",
1128
+ "year_start": 1999,
1129
+ "year_end": 2022,
1130
+ "year_range_label": "1999\u20132022",
1131
+ "tags": [
1132
+ "cancer",
1133
+ "incidence",
1134
+ "tumor",
1135
+ "oncology",
1136
+ "breast cancer",
1137
+ "lung cancer",
1138
+ "colorectal",
1139
+ "prostate",
1140
+ "childhood cancer",
1141
+ "new cases",
1142
+ "USCS"
1143
+ ],
1144
+ "measures": [
1145
+ {
1146
+ "code": "D205.M1",
1147
+ "label": "Count (new cancer cases)"
1148
+ },
1149
+ {
1150
+ "code": "D205.M30",
1151
+ "label": "Crude Rate"
1152
+ },
1153
+ {
1154
+ "code": "D205.M40",
1155
+ "label": "Age-Adjusted Rate"
1156
+ }
1157
+ ],
1158
+ "key_groupings": [
1159
+ "Cancer Site (all types, leading sites, childhood cancers)",
1160
+ "Year",
1161
+ "State / Region / MSA",
1162
+ "Age Group",
1163
+ "Sex",
1164
+ "Race/Ethnicity"
1165
+ ],
1166
+ "has_template": false,
1167
+ "has_aar": true,
1168
+ "notes": "Most current cancer incidence. Many archived versions (D28, D40, D50, D70, D75, D85, D89, D94, D100, D113, D121, D136, D144, D151, D160, D172, D181, D187, D198) cover earlier years."
1169
+ },
1170
+ {
1171
+ "id": "D207",
1172
+ "title": "US Cancer Statistics \u2014 Mortality, Single Race",
1173
+ "topic": "Cancer",
1174
+ "subject": "Cancer mortality (deaths and rates) for 2018-2023 with single-race classification. Covers all cancer sites broken down by state, age, sex, and race. Pair with D205 (incidence) for survival and incidence-to-mortality comparisons.",
1175
+ "year_start": 2018,
1176
+ "year_end": 2023,
1177
+ "year_range_label": "2018\u20132023",
1178
+ "tags": [
1179
+ "cancer",
1180
+ "mortality",
1181
+ "death",
1182
+ "tumor",
1183
+ "oncology",
1184
+ "breast cancer",
1185
+ "lung cancer",
1186
+ "colorectal",
1187
+ "prostate",
1188
+ "single-race",
1189
+ "USCS"
1190
+ ],
1191
+ "measures": [
1192
+ {
1193
+ "code": "D207.M1",
1194
+ "label": "Deaths"
1195
+ },
1196
+ {
1197
+ "code": "D207.M30",
1198
+ "label": "Crude Rate"
1199
+ },
1200
+ {
1201
+ "code": "D207.M40",
1202
+ "label": "Age-Adjusted Rate"
1203
+ }
1204
+ ],
1205
+ "key_groupings": [
1206
+ "Cancer Site",
1207
+ "Year",
1208
+ "State / Region / MSA",
1209
+ "Age Group",
1210
+ "Sex",
1211
+ "Single Race / Ethnicity"
1212
+ ],
1213
+ "has_template": false,
1214
+ "has_aar": true,
1215
+ "notes": "Most current cancer mortality with single-race detail. Historical archived versions: D29, D41, D51, D71, D90, D95, D101, D114, D125, D137, D145, D152, D161, D173, D182, D188, D199."
1216
+ },
1217
+ {
1218
+ "id": "D127",
1219
+ "title": "STD Morbidity",
1220
+ "topic": "STI / Sexual Health",
1221
+ "subject": "National surveillance data on sexually transmitted infections including chlamydia, gonorrhea, syphilis (all stages), and other reportable STDs. Case counts and rates by state, year, sex, disease type, and STD surveillance region. 1984-2014.",
1222
+ "year_start": 1984,
1223
+ "year_end": 2014,
1224
+ "year_range_label": "1984\u20132014",
1225
+ "tags": [
1226
+ "STD",
1227
+ "STI",
1228
+ "chlamydia",
1229
+ "gonorrhea",
1230
+ "syphilis",
1231
+ "sexually transmitted",
1232
+ "sexual health",
1233
+ "morbidity",
1234
+ "cases"
1235
+ ],
1236
+ "measures": [
1237
+ {
1238
+ "code": "D127.M1",
1239
+ "label": "Count (cases)"
1240
+ },
1241
+ {
1242
+ "code": "D127.M2",
1243
+ "label": "Population"
1244
+ },
1245
+ {
1246
+ "code": "D127.M3",
1247
+ "label": "Rate per 100,000"
1248
+ }
1249
+ ],
1250
+ "key_groupings": [
1251
+ "Disease",
1252
+ "State / STD Region / HHS Region",
1253
+ "Year",
1254
+ "Sex"
1255
+ ],
1256
+ "has_template": false,
1257
+ "has_aar": false,
1258
+ "notes": "Archive data through 2014. Archived versions: D2, D36, D42, D47, D59, D86, D106. For current data, see CDC STI Surveillance Reports."
1259
+ },
1260
+ {
1261
+ "id": "D128",
1262
+ "title": "STD Morbidity by Age, Race, and Sex",
1263
+ "topic": "STI / Sexual Health",
1264
+ "subject": "Sexually transmitted infections stratified by age group, race/ethnicity, and sex for 1996-2014. More detailed demographic breakdown than D127. Covers chlamydia, gonorrhea, and syphilis. Essential for understanding STI disparities by race and age.",
1265
+ "year_start": 1996,
1266
+ "year_end": 2014,
1267
+ "year_range_label": "1996\u20132014",
1268
+ "tags": [
1269
+ "STD",
1270
+ "STI",
1271
+ "chlamydia",
1272
+ "gonorrhea",
1273
+ "syphilis",
1274
+ "age",
1275
+ "race",
1276
+ "sex",
1277
+ "disparity",
1278
+ "sexual health"
1279
+ ],
1280
+ "measures": [
1281
+ {
1282
+ "code": "D128.M1",
1283
+ "label": "Count (cases)"
1284
+ },
1285
+ {
1286
+ "code": "D128.M2",
1287
+ "label": "Population"
1288
+ },
1289
+ {
1290
+ "code": "D128.M3",
1291
+ "label": "Rate per 100,000"
1292
+ }
1293
+ ],
1294
+ "key_groupings": [
1295
+ "Disease",
1296
+ "State",
1297
+ "Year",
1298
+ "Sex",
1299
+ "Race/Ethnicity",
1300
+ "Age Group"
1301
+ ],
1302
+ "has_template": true,
1303
+ "has_aar": false,
1304
+ "notes": "Archive data through 2014. Archived versions: D45, D57, D84, D107, D128."
1305
+ },
1306
+ {
1307
+ "id": "D202",
1308
+ "title": "Tuberculosis (OTIS TB Data)",
1309
+ "topic": "Tuberculosis",
1310
+ "subject": "TB case surveillance from the Online Tuberculosis Information System (OTIS), 1993-2023. Track new TB cases by state, year, age, race/ethnicity, sex, origin of birth (US-born vs. foreign-born), and HIV status. Includes treatment completion and drug susceptibility testing rates.",
1311
+ "year_start": 1993,
1312
+ "year_end": 2023,
1313
+ "year_range_label": "1993\u20132023",
1314
+ "tags": [
1315
+ "tuberculosis",
1316
+ "TB",
1317
+ "OTIS",
1318
+ "infectious disease",
1319
+ "foreign-born",
1320
+ "HIV",
1321
+ "treatment",
1322
+ "drug-resistant",
1323
+ "MDR-TB"
1324
+ ],
1325
+ "measures": [
1326
+ {
1327
+ "code": "D202.M1",
1328
+ "label": "TB Cases"
1329
+ },
1330
+ {
1331
+ "code": "D202.M2",
1332
+ "label": "Percent of Total"
1333
+ },
1334
+ {
1335
+ "code": "D202.M3",
1336
+ "label": "Incidence Rate per 100,000"
1337
+ },
1338
+ {
1339
+ "code": "D202.M7",
1340
+ "label": "Treatment Completion Rate (%)"
1341
+ },
1342
+ {
1343
+ "code": "D202.M9",
1344
+ "label": "% Tested for Drug Susceptibility (Isoniazid)"
1345
+ }
1346
+ ],
1347
+ "key_groupings": [
1348
+ "State",
1349
+ "Year",
1350
+ "Age Group",
1351
+ "Race/Ethnicity (bridged or single)",
1352
+ "Sex",
1353
+ "Origin of Birth (US-born / foreign-born)",
1354
+ "HIV Status",
1355
+ "Years in US"
1356
+ ],
1357
+ "has_template": false,
1358
+ "has_aar": false,
1359
+ "notes": "Most current TB data (2023). Annual archive versions every year from 1993: D4, D15, D26, D34, D38, D49, D55, D78, D96, D108, D123, D131, D135, D147, D156, D165, D175, D186, D193."
1360
+ },
1361
+ {
1362
+ "id": "D133",
1363
+ "title": "Fetal Deaths",
1364
+ "topic": "Fetal Deaths",
1365
+ "subject": "Fetal death (stillbirth) records for 2005-2024, covering 20+ weeks gestation. Track stillbirths by state, cause of death, gestational age, birth weight, delivery method, maternal age, race, and congenital anomalies (Down syndrome, anencephalus, spina bifida, omphalocele).",
1366
+ "year_start": 2005,
1367
+ "year_end": 2024,
1368
+ "year_range_label": "2005\u20132024",
1369
+ "tags": [
1370
+ "fetal death",
1371
+ "stillbirth",
1372
+ "pregnancy loss",
1373
+ "gestational age",
1374
+ "birth weight",
1375
+ "congenital",
1376
+ "maternal",
1377
+ "obstetric",
1378
+ "Down syndrome"
1379
+ ],
1380
+ "measures": [
1381
+ {
1382
+ "code": "D133.M1",
1383
+ "label": "Fetal Deaths"
1384
+ },
1385
+ {
1386
+ "code": "D133.M2",
1387
+ "label": "Percent of Total Deaths"
1388
+ }
1389
+ ],
1390
+ "key_groupings": [
1391
+ "Year / Month",
1392
+ "State",
1393
+ "Gestational Age",
1394
+ "Fetal Sex",
1395
+ "Infant Delivery Weight",
1396
+ "Cause of Death (ICD Chapter)",
1397
+ "Mother's Race / Hispanic Origin",
1398
+ "Mother's Age",
1399
+ "Delivery Method",
1400
+ "Congenital Anomalies (Down Syndrome, Spina Bifida, etc.)",
1401
+ "Maternal Conditions (diabetes, hypertension, eclampsia)"
1402
+ ],
1403
+ "has_template": false,
1404
+ "has_aar": false,
1405
+ "notes": "Use D150 for expanded version (2014+) with maternal education, tobacco, ART, and more detailed variables."
1406
+ },
1407
+ {
1408
+ "id": "D150",
1409
+ "title": "Fetal Deaths, Expanded",
1410
+ "topic": "Fetal Deaths",
1411
+ "subject": "Expanded fetal death (stillbirth) data for 2014-2024 with additional variables: maternal education, tobacco use during pregnancy, prenatal care timing, gestational diabetes, infertility treatments (ART, fertility drugs), prior cesarean, and detailed single-race classification.",
1412
+ "year_start": 2014,
1413
+ "year_end": 2024,
1414
+ "year_range_label": "2014\u20132024",
1415
+ "tags": [
1416
+ "fetal death",
1417
+ "stillbirth",
1418
+ "tobacco",
1419
+ "ART",
1420
+ "infertility",
1421
+ "cesarean",
1422
+ "education",
1423
+ "expanded",
1424
+ "single-race",
1425
+ "gestational diabetes"
1426
+ ],
1427
+ "measures": [
1428
+ {
1429
+ "code": "D150.M1",
1430
+ "label": "Fetal Deaths"
1431
+ },
1432
+ {
1433
+ "code": "D150.M2",
1434
+ "label": "Percent of Total Deaths"
1435
+ }
1436
+ ],
1437
+ "key_groupings": [
1438
+ "Year / Month / Time of Day",
1439
+ "State",
1440
+ "Mother's Single Race / Ethnicity (detailed)",
1441
+ "Mother's Education / Nativity / Country of Birth",
1442
+ "Tobacco Use / Cigarettes per Trimester",
1443
+ "Prenatal Care (trimester began)",
1444
+ "WIC participation",
1445
+ "Infertility Treatment / ART",
1446
+ "Prior Cesarean",
1447
+ "Gestational Age",
1448
+ "Delivery Method",
1449
+ "Cause of Death (ICD Chapter, 124 selected causes)"
1450
+ ],
1451
+ "has_template": false,
1452
+ "has_aar": false,
1453
+ "notes": "Expanded version of D133, only from 2014. Adds ART, tobacco, education, and maternal health detail."
1454
+ },
1455
+ {
1456
+ "id": "D204",
1457
+ "title": "Population Estimates, Single Race",
1458
+ "topic": "Population",
1459
+ "subject": "Annual population estimates by state and county, 2020-2024, using single-race classification. Useful as a population denominator when calculating rates, or for studying demographic distribution by age, sex, race, and ethnicity.",
1460
+ "year_start": 2020,
1461
+ "year_end": 2024,
1462
+ "year_range_label": "2020\u20132024",
1463
+ "tags": [
1464
+ "population",
1465
+ "estimates",
1466
+ "denominator",
1467
+ "census",
1468
+ "race",
1469
+ "age",
1470
+ "county",
1471
+ "single-race"
1472
+ ],
1473
+ "measures": [
1474
+ {
1475
+ "code": "D204.M1",
1476
+ "label": "Population"
1477
+ }
1478
+ ],
1479
+ "key_groupings": [
1480
+ "State / County / Region",
1481
+ "Age Group",
1482
+ "Sex / Gender",
1483
+ "Race",
1484
+ "Ethnicity (Hispanic/Non-Hispanic)",
1485
+ "Year (annual July 1st)"
1486
+ ],
1487
+ "has_template": true,
1488
+ "has_aar": false,
1489
+ "notes": "Denominator data. Historical bridged-race estimates (1990-2020): D1, D5, D9, D24, D32, D37, D44, D52, D82, D92, D99, D116, D129, D134, D143, D154, D163, D178. Other single-race vintages: D142, D148, D155, D164, D166-D171, D184, D185, D190, D191, D196, D197, D203."
1490
+ },
1491
+ {
1492
+ "id": "D178",
1493
+ "title": "Population Estimates, Bridged-Race (1990\u20132020)",
1494
+ "topic": "Population",
1495
+ "subject": "Annual population estimates using the legacy bridged-race classification (4 race categories: White, Black, AIAN, API), 1990-2020. Used as the denominator for bridged-race mortality datasets (D76, D77, D141, D176). County and state level.",
1496
+ "year_start": 1990,
1497
+ "year_end": 2020,
1498
+ "year_range_label": "1990\u20132020",
1499
+ "tags": [
1500
+ "population",
1501
+ "estimates",
1502
+ "denominator",
1503
+ "bridged-race",
1504
+ "historical",
1505
+ "census",
1506
+ "county"
1507
+ ],
1508
+ "measures": [
1509
+ {
1510
+ "code": "D178.M1",
1511
+ "label": "Population"
1512
+ }
1513
+ ],
1514
+ "key_groupings": [
1515
+ "State / County / Region",
1516
+ "Age / Age Group",
1517
+ "Sex",
1518
+ "Race (4 categories)",
1519
+ "Ethnicity",
1520
+ "Year"
1521
+ ],
1522
+ "has_template": true,
1523
+ "has_aar": false,
1524
+ "notes": "Legacy 4-category race system. Pairs with D76, D77, D176 mortality. Use D204 for post-2020 single-race estimates."
1525
+ },
1526
+ {
1527
+ "id": "D117",
1528
+ "title": "National Population Projections",
1529
+ "topic": "Population",
1530
+ "subject": "Census Bureau national population projections by age, sex, race, and ethnicity from 2014 to 2060. Useful for understanding long-term demographic change and projecting future healthcare demand.",
1531
+ "year_start": 2014,
1532
+ "year_end": 2060,
1533
+ "year_range_label": "2014\u20132060",
1534
+ "tags": [
1535
+ "population",
1536
+ "projections",
1537
+ "forecast",
1538
+ "demographics",
1539
+ "future",
1540
+ "census",
1541
+ "age",
1542
+ "race",
1543
+ "long-term"
1544
+ ],
1545
+ "measures": [
1546
+ {
1547
+ "code": "D117.M1",
1548
+ "label": "Projected Population"
1549
+ }
1550
+ ],
1551
+ "key_groupings": [
1552
+ "Year",
1553
+ "Age / Age Group",
1554
+ "Sex",
1555
+ "Race",
1556
+ "Ethnicity"
1557
+ ],
1558
+ "has_template": true,
1559
+ "has_aar": false,
1560
+ "notes": "Projections only. Birth/death/migration components: D118 (by race), D119 (by ethnicity). State-level projections: D7."
1561
+ },
1562
+ {
1563
+ "id": "D12",
1564
+ "title": "AIDS Public Use Data",
1565
+ "topic": "HIV/AIDS",
1566
+ "subject": "AIDS case surveillance data from the early HIV epidemic, covering diagnoses through 1999. Demographic characteristics (age, sex, race/ethnicity) and transmission categories (MSM, IDU, heterosexual, perinatal, blood products). Historical archive of the 1980s-1990s AIDS epidemic.",
1567
+ "year_start": 1981,
1568
+ "year_end": 1999,
1569
+ "year_range_label": "1981\u20131999",
1570
+ "tags": [
1571
+ "AIDS",
1572
+ "HIV",
1573
+ "epidemic",
1574
+ "historical",
1575
+ "transmission",
1576
+ "surveillance",
1577
+ "MSM",
1578
+ "injection drug use"
1579
+ ],
1580
+ "measures": [
1581
+ {
1582
+ "code": "D12.M1",
1583
+ "label": "AIDS Cases"
1584
+ }
1585
+ ],
1586
+ "key_groupings": [
1587
+ "Year",
1588
+ "State",
1589
+ "Age",
1590
+ "Sex",
1591
+ "Race/Ethnicity",
1592
+ "Transmission Category"
1593
+ ],
1594
+ "has_template": false,
1595
+ "has_aar": false,
1596
+ "notes": "Historical only. Vintage 2001 (D13) and 2002 (D14) also available. Current HIV surveillance uses NHSS outside of WONDER."
1597
+ }
1598
+ ]
1599
+ }