@cdc/chart 4.24.1 → 4.24.3

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. package/dist/cdcchart.js +48948 -37923
  2. package/examples/{private/combo.json → chart-regression-1.json} +40 -31
  3. package/examples/chart-regression-2.json +2360 -0
  4. package/examples/feature/filters/url-filter.json +1076 -0
  5. package/examples/feature/line/line-chart-preliminary.json +84 -37
  6. package/examples/feature/line/line-chart.json +2 -1
  7. package/examples/feature/regions/index.json +55 -5
  8. package/examples/feature/sankey/sankey-example-data.json +1364 -0
  9. package/examples/feature/sankey/sankey_chart_data.csv +20 -0
  10. package/examples/gallery/bar-chart-vertical/vertical-bar-chart-stacked.json +306 -19
  11. package/examples/sparkline.json +868 -0
  12. package/index.html +128 -121
  13. package/package.json +4 -2
  14. package/src/CdcChart.tsx +73 -38
  15. package/src/_stories/ChartEditor.stories.tsx +15 -4
  16. package/src/_stories/_mock/pie_config.json +4 -3
  17. package/src/_stories/_mock/url_filter.json +1076 -0
  18. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +2 -1
  19. package/src/components/AreaChart/components/AreaChart.jsx +2 -25
  20. package/src/components/BarChart/components/BarChart.Horizontal.tsx +39 -49
  21. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +36 -56
  22. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +36 -41
  23. package/src/components/BarChart/components/BarChart.Vertical.tsx +48 -64
  24. package/src/components/BoxPlot/BoxPlot.jsx +11 -9
  25. package/src/components/DeviationBar.jsx +3 -3
  26. package/src/components/EditorPanel/EditorPanel.tsx +1717 -1961
  27. package/src/components/EditorPanel/EditorPanelContext.ts +40 -0
  28. package/src/components/EditorPanel/components/Panels/Panel.BoxPlot.tsx +148 -0
  29. package/src/components/EditorPanel/components/{Panel.ForestPlotSettings.tsx → Panels/Panel.ForestPlotSettings.tsx} +16 -7
  30. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +160 -0
  31. package/src/components/EditorPanel/components/{Panel.Regions.tsx → Panels/Panel.Regions.tsx} +6 -6
  32. package/src/components/EditorPanel/components/Panels/Panel.Sankey.tsx +108 -0
  33. package/src/components/EditorPanel/components/{Panel.Series.tsx → Panels/Panel.Series.tsx} +50 -6
  34. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +338 -0
  35. package/src/components/EditorPanel/components/Panels/index.tsx +19 -0
  36. package/src/components/EditorPanel/components/panels.scss +11 -0
  37. package/src/components/EditorPanel/editor-panel.scss +1 -13
  38. package/src/components/EditorPanel/useEditorPermissions.js +44 -13
  39. package/src/components/Legend/Legend.Component.tsx +207 -0
  40. package/src/components/Legend/Legend.tsx +8 -327
  41. package/src/components/Legend/helpers/createFormatLabels.tsx +140 -0
  42. package/src/components/LineChart/LineChartProps.ts +2 -1
  43. package/src/components/LineChart/components/LineChart.Circle.tsx +85 -52
  44. package/src/components/LineChart/helpers.ts +3 -3
  45. package/src/components/LineChart/index.tsx +99 -23
  46. package/src/components/LinearChart.jsx +12 -33
  47. package/src/components/PairedBarChart.jsx +10 -12
  48. package/src/components/PieChart/PieChart.tsx +80 -27
  49. package/src/components/Regions/components/Regions.tsx +120 -69
  50. package/src/components/Sankey/index.tsx +434 -0
  51. package/src/components/Sankey/sankey.scss +153 -0
  52. package/src/components/Sankey/types/index.ts +16 -0
  53. package/src/components/ScatterPlot/ScatterPlot.jsx +1 -0
  54. package/src/components/Sparkline/{SparkLine.jsx → components/SparkLine.tsx} +14 -30
  55. package/src/components/Sparkline/index.scss +3 -0
  56. package/src/components/Sparkline/index.tsx +1 -1
  57. package/src/components/ZoomBrush.tsx +2 -1
  58. package/src/data/initial-state.js +51 -4
  59. package/src/helpers/computeMarginBottom.ts +4 -3
  60. package/src/helpers/tests/computeMarginBottom.test.ts +2 -1
  61. package/src/hooks/useBarChart.js +5 -2
  62. package/src/hooks/useHighlightedBars.js +1 -1
  63. package/src/hooks/useMinMax.ts +3 -3
  64. package/src/hooks/useScales.ts +28 -18
  65. package/src/hooks/useTooltip.tsx +19 -14
  66. package/src/scss/main.scss +8 -96
  67. package/src/types/ChartConfig.ts +47 -20
  68. package/src/types/ChartContext.ts +17 -4
  69. package/src/types/Label.ts +7 -0
  70. package/examples/private/chart-t.json +0 -3740
  71. package/examples/private/epi-data.csv +0 -13
  72. package/examples/private/epi-data.json +0 -62
  73. package/examples/private/epi.json +0 -403
  74. package/examples/private/occupancy.json +0 -109283
  75. package/examples/private/prod-line-config.json +0 -401
  76. package/examples/private/region-data.json +0 -822
  77. package/examples/private/region-testing.json +0 -312
  78. package/examples/private/scaling.json +0 -45325
  79. package/examples/private/testing-data.json +0 -1739
  80. package/examples/private/testing.json +0 -816
  81. package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +0 -109
  82. package/src/components/EditorPanel/components/Panels.tsx +0 -13
@@ -0,0 +1,1364 @@
1
+ {
2
+ "type": "chart",
3
+ "debugSvg": false,
4
+ "chartMessage": {
5
+ "noData": "No Data Available"
6
+ },
7
+ "title": "",
8
+ "showTitle": true,
9
+ "enableTooltips": true,
10
+ "showDownloadMediaButton": false,
11
+ "theme": "theme-blue",
12
+ "animate": false,
13
+ "fontSize": "medium",
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
16
+ "barHasBorder": "false",
17
+ "isLollipopChart": false,
18
+ "visualizationSubType": "regular",
19
+ "barStyle": "",
20
+ "roundingStyle": "standard",
21
+ "tipRounding": "top",
22
+ "isResponsiveTicks": false,
23
+ "general": {
24
+ "showDownloadButton": false
25
+ },
26
+ "padding": {
27
+ "left": 5,
28
+ "right": 5
29
+ },
30
+ "suppressedData": [],
31
+ "preliminaryData": [],
32
+ "yAxis": {
33
+ "hideAxis": false,
34
+ "displayNumbersOnBar": false,
35
+ "hideLabel": false,
36
+ "hideTicks": false,
37
+ "size": 50,
38
+ "gridLines": false,
39
+ "enablePadding": false,
40
+ "min": "",
41
+ "max": "",
42
+ "labelColor": "#333",
43
+ "tickLabelColor": "#333",
44
+ "tickColor": "#333",
45
+ "rightHideAxis": true,
46
+ "rightAxisSize": 0,
47
+ "rightLabel": "",
48
+ "rightLabelOffsetSize": 0,
49
+ "rightAxisLabelColor": "#333",
50
+ "rightAxisTickLabelColor": "#333",
51
+ "rightAxisTickColor": "#333",
52
+ "numTicks": "",
53
+ "axisPadding": 0,
54
+ "tickRotation": 0,
55
+ "anchors": []
56
+ },
57
+ "isLegendValue": false,
58
+ "barThickness": 0.35,
59
+ "barHeight": 25,
60
+ "barSpace": 15,
61
+ "heights": {
62
+ "vertical": 550,
63
+ "horizontal": 750
64
+ },
65
+ "xAxis": {
66
+ "sortDates": false,
67
+ "anchors": [],
68
+ "type": "categorical",
69
+ "showTargetLabel": true,
70
+ "targetLabel": "Target",
71
+ "hideAxis": false,
72
+ "hideLabel": false,
73
+ "hideTicks": false,
74
+ "size": 75,
75
+ "tickRotation": 0,
76
+ "min": "",
77
+ "max": "",
78
+ "labelColor": "#333",
79
+ "tickLabelColor": "#333",
80
+ "tickColor": "#333",
81
+ "numTicks": "",
82
+ "labelOffset": 65,
83
+ "axisPadding": 0,
84
+ "target": 0,
85
+ "maxTickRotation": 0
86
+ },
87
+ "table": {
88
+ "label": "Data Table",
89
+ "expanded": true,
90
+ "limitHeight": false,
91
+ "height": "",
92
+ "caption": "",
93
+ "showDownloadUrl": false,
94
+ "showDataTableLink": true,
95
+ "indexLabel": "",
96
+ "download": false,
97
+ "showVertical": true,
98
+ "show": true,
99
+ "customTableConfig": true
100
+ },
101
+ "orientation": "vertical",
102
+ "color": "pinkpurple",
103
+ "columns": {},
104
+ "legend": {
105
+ "hide": false,
106
+ "behavior": "isolate",
107
+ "singleRow": true,
108
+ "colorCode": "",
109
+ "reverseLabelOrder": false,
110
+ "description": "",
111
+ "dynamicLegend": false,
112
+ "dynamicLegendDefaultText": "Show All",
113
+ "dynamicLegendItemLimit": 5,
114
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
115
+ "dynamicLegendChartMessage": "Select Options from the Legend",
116
+ "lineMode": false,
117
+ "verticalSorted": false,
118
+ "highlightOnHover": false
119
+ },
120
+ "brush": {
121
+ "height": 25,
122
+ "data": [],
123
+ "active": false
124
+ },
125
+ "exclusions": {
126
+ "active": false,
127
+ "keys": []
128
+ },
129
+ "palette": "qualitative-bold",
130
+ "isPaletteReversed": false,
131
+ "twoColor": {
132
+ "palette": "monochrome-1",
133
+ "isPaletteReversed": false
134
+ },
135
+ "labels": false,
136
+ "dataFormat": {
137
+ "commas": false,
138
+ "prefix": "",
139
+ "suffix": "",
140
+ "abbreviated": false,
141
+ "bottomSuffix": "",
142
+ "bottomPrefix": "",
143
+ "bottomAbbreviated": false
144
+ },
145
+ "confidenceKeys": {},
146
+ "visual": {
147
+ "border": true,
148
+ "accent": true,
149
+ "background": true,
150
+ "verticalHoverLine": false,
151
+ "horizontalHoverLine": false
152
+ },
153
+ "useLogScale": false,
154
+ "filterBehavior": "Filter Change",
155
+ "highlightedBarValues": [],
156
+ "series": [],
157
+ "tooltips": {
158
+ "opacity": 90,
159
+ "singleSeries": false
160
+ },
161
+ "area": {
162
+ "isStacked": false
163
+ },
164
+ "sankey": {
165
+ "title": {
166
+ "defaultColor": "black"
167
+ },
168
+ "iterations": 1,
169
+ "rxValue": 0.9,
170
+ "overallSize": {
171
+ "width": 900,
172
+ "height": 700
173
+ },
174
+ "margin": {
175
+ "margin_y": 25,
176
+ "margin_x": 0
177
+ },
178
+ "nodeSize": {
179
+ "nodeWidth": 26,
180
+ "nodeHeight": 40
181
+ },
182
+ "nodePadding": 55,
183
+ "opacity": {
184
+ "nodeOpacityDefault": 1,
185
+ "nodeOpacityInactive": 0.1,
186
+ "LinkOpacityDefault": 1,
187
+ "LinkOpacityInactive": 0.1
188
+ },
189
+ "storyNodeText": [],
190
+ "nodeValueStyle": {
191
+ "textBefore": "(",
192
+ "textAfter": ")"
193
+ },
194
+ "data": []
195
+ },
196
+ "datasets": {},
197
+ "visualizationType": "Sankey",
198
+ "data": [
199
+ {
200
+ "links": [
201
+ {
202
+ "source": "Suicide EMS Responses",
203
+ "target": "Dead at Scene",
204
+ "value": 4088
205
+ },
206
+ {
207
+ "source": "Suicide EMS Responses",
208
+ "target": "Treated",
209
+ "value": 438974
210
+ },
211
+ {
212
+ "source": "Suicide EMS Responses",
213
+ "target": "Assisted",
214
+ "value": 5701
215
+ },
216
+ {
217
+ "source": "Suicide EMS Responses",
218
+ "target": "No patient contact",
219
+ "value": 459
220
+ },
221
+ {
222
+ "source": "Suicide EMS Responses",
223
+ "target": "Refused evaluation care",
224
+ "value": 12641
225
+ },
226
+ {
227
+ "source": "Suicide EMS Responses",
228
+ "target": "Evaluated no treatment required",
229
+ "value": 5169
230
+ },
231
+ {
232
+ "source": "Suicide EMS Responses",
233
+ "target": "Unknown",
234
+ "value": 104
235
+ },
236
+ {
237
+ "source": "Dead at Scene",
238
+ "target": "Dead",
239
+ "value": 4088
240
+ },
241
+ {
242
+ "source": "Treated",
243
+ "target": "Dead",
244
+ "value": 648
245
+ },
246
+ {
247
+ "source": "Treated",
248
+ "target": "Transported to hospital",
249
+ "value": 423520
250
+ },
251
+ {
252
+ "source": "Treated",
253
+ "target": "Transported to facility",
254
+ "value": 4504
255
+ },
256
+ {
257
+ "source": "Treated",
258
+ "target": "Released",
259
+ "value": 10302
260
+ },
261
+ {
262
+ "source": "Refused evaluation care",
263
+ "target": "Released",
264
+ "value": 11781
265
+ },
266
+ {
267
+ "source": "Refused evaluation care",
268
+ "target": "Transported to hospital",
269
+ "value": 860
270
+ },
271
+ {
272
+ "source": "Evaluated no treatment required",
273
+ "target": "Released",
274
+ "value": 5169
275
+ }
276
+ ],
277
+ "storyNodeText": [
278
+ {
279
+ "StoryNode": "Suicide EMS Responses",
280
+ "segmentTextBefore": "In 2022, there were",
281
+ "segmentTextAfter": "Suicide EMS Responses"
282
+ },
283
+ {
284
+ "StoryNode": "Treated",
285
+ "segmentTextBefore": "of which,",
286
+ "segmentTextAfter": "were treated"
287
+ }
288
+ ],
289
+ "tooltips": [
290
+ {
291
+ "node": "Suicide EMS Responses",
292
+ "value": "467,136 (100%)",
293
+ "summary": "Total number of suicide EMS responses.",
294
+ "column1Label": "Gender",
295
+ "column2Label": "Race and Ethnicity",
296
+ "column1": [
297
+ {
298
+ "label": "Female",
299
+ "value": "218,195",
300
+ "additional_info": "46.71"
301
+ },
302
+ {
303
+ "label": "Male",
304
+ "value": "243,481",
305
+ "additional_info": "52.12"
306
+ },
307
+ {
308
+ "label": "Unknown",
309
+ "value": "5,460",
310
+ "additional_info": "1.17"
311
+ }
312
+ ],
313
+ "column2": [
314
+ {
315
+ "label": "Non-Hispanic White",
316
+ "value": "245,998",
317
+ "additional_info": "52.66"
318
+ },
319
+ {
320
+ "label": "Non-Hispanic Black",
321
+ "value": "93,244",
322
+ "additional_info": "19.96"
323
+ },
324
+ {
325
+ "label": "Hispanic",
326
+ "value": "41,396",
327
+ "additional_info": "8.86"
328
+ },
329
+ {
330
+ "label": "Non-Hispanic American Indian or Alaska Native",
331
+ "value": "4,470",
332
+ "additional_info": "0.96"
333
+ },
334
+ {
335
+ "label": "Non-Hispanic Asian",
336
+ "value": "6,160",
337
+ "additional_info": "1.32"
338
+ },
339
+ {
340
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
341
+ "value": "1,287",
342
+ "additional_info": "0.28"
343
+ },
344
+ {
345
+ "label": "Missing",
346
+ "value": "74,581",
347
+ "additional_info": "15.97"
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "node": "Dead",
353
+ "value": "4,736 (1.01%)",
354
+ "summary": "Patient Died",
355
+ "column1Label": "Gender",
356
+ "column2Label": "Race and Ethnicity",
357
+ "column1": [
358
+ {
359
+ "label": "Female",
360
+ "value": "1,244",
361
+ "additional_info": "26.47"
362
+ },
363
+ {
364
+ "label": "Male",
365
+ "value": "3,440",
366
+ "additional_info": "72.64"
367
+ },
368
+ {
369
+ "label": "Unknown",
370
+ "value": "52",
371
+ "additional_info": "1.1"
372
+ }
373
+ ],
374
+ "column2": [
375
+ {
376
+ "label": "Non-Hispanic White",
377
+ "value": "3,235",
378
+ "additional_info": "68.31"
379
+ },
380
+ {
381
+ "label": "Non-Hispanic Black",
382
+ "value": "307",
383
+ "additional_info": "6.48"
384
+ },
385
+ {
386
+ "label": "Hispanic",
387
+ "value": "242",
388
+ "additional_info": "5.11"
389
+ },
390
+ {
391
+ "label": "Non-Hispanic American Indian or Alaska Native",
392
+ "value": "26",
393
+ "additional_info": "0.55"
394
+ },
395
+ {
396
+ "label": "Non-Hispanic Asian",
397
+ "value": "81",
398
+ "additional_info": "1.71"
399
+ },
400
+ {
401
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
402
+ "value": "**",
403
+ "additional_info": "**"
404
+ },
405
+ {
406
+ "label": "Missing",
407
+ "value": "834",
408
+ "additional_info": "17.61"
409
+ }
410
+ ]
411
+ },
412
+ {
413
+ "node": "Released",
414
+ "value": "27,252 (5.83%)",
415
+ "value_pct": "5.83",
416
+ "summary": "Patient was released.",
417
+ "column1Label": "Gender",
418
+ "column2Label": "Race and Ethnicity",
419
+ "column1": [
420
+ {
421
+ "label": "Female",
422
+ "value": "13,835",
423
+ "additional_info": "50.77"
424
+ },
425
+ {
426
+ "label": "Male",
427
+ "value": "12,900",
428
+ "additional_info": "47.34"
429
+ },
430
+ {
431
+ "label": "Unknown",
432
+ "value": "517",
433
+ "additional_info": "1.9"
434
+ }
435
+ ],
436
+ "column2": [
437
+ {
438
+ "label": "Non-Hispanic White",
439
+ "value": "15,088",
440
+ "additional_info": "55.36"
441
+ },
442
+ {
443
+ "label": "Non-Hispanic Black",
444
+ "value": "4,749",
445
+ "additional_info": "17.43"
446
+ },
447
+ {
448
+ "label": "Hispanic",
449
+ "value": "2,177",
450
+ "additional_info": "7.99"
451
+ },
452
+ {
453
+ "label": "Non-Hispanic American Indian or Alaska Native",
454
+ "value": "287",
455
+ "additional_info": "1.05"
456
+ },
457
+ {
458
+ "label": "Non-Hispanic Asian",
459
+ "value": "321",
460
+ "additional_info": "1.18"
461
+ },
462
+ {
463
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
464
+ "value": "65",
465
+ "additional_info": "0.24"
466
+ },
467
+ {
468
+ "label": "Missing",
469
+ "value": "4,565",
470
+ "additional_info": "16.75"
471
+ }
472
+ ]
473
+ },
474
+ {
475
+ "node": "Transported to facility",
476
+ "value": "4,504 (0.96%)",
477
+ "summary": "Patient was transported to a facility.",
478
+ "column1Label": "Gender",
479
+ "column2Label": "Race and Ethnicity",
480
+ "column1": [
481
+ {
482
+ "label": "Female",
483
+ "value": "1,938",
484
+ "additional_info": "43.03"
485
+ },
486
+ {
487
+ "label": "Male",
488
+ "value": "2,522",
489
+ "additional_info": "55.99"
490
+ },
491
+ {
492
+ "label": "Unknown",
493
+ "value": "44",
494
+ "additional_info": "0.98"
495
+ }
496
+ ],
497
+ "column2": [
498
+ {
499
+ "label": "Non-Hispanic White",
500
+ "value": "2,093",
501
+ "additional_info": "46.47"
502
+ },
503
+ {
504
+ "label": "Non-Hispanic Black",
505
+ "value": "1,113",
506
+ "additional_info": "24.71"
507
+ },
508
+ {
509
+ "label": "Hispanic",
510
+ "value": "608",
511
+ "additional_info": "13.5"
512
+ },
513
+ {
514
+ "label": "Non-Hispanic American Indian or Alaska Native",
515
+ "value": "73",
516
+ "additional_info": "1.62"
517
+ },
518
+ {
519
+ "label": "Non-Hispanic Asian",
520
+ "value": "48",
521
+ "additional_info": "1.07"
522
+ },
523
+ {
524
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
525
+ "value": "**",
526
+ "additional_info": "**"
527
+ },
528
+ {
529
+ "label": "Missing",
530
+ "value": "564",
531
+ "additional_info": "12.52"
532
+ }
533
+ ]
534
+ },
535
+ {
536
+ "node": "Transported to hospital",
537
+ "value": "424,380 (90.85%)",
538
+ "summary": "Patient was transported to the hospital by the EMS Unit or another EMS unit.",
539
+ "column1Label": "Gender",
540
+ "column2Label": "Race and Ethnicity",
541
+ "column1": [
542
+ {
543
+ "label": "Female",
544
+ "value": "199,301",
545
+ "additional_info": "46.96"
546
+ },
547
+ {
548
+ "label": "Male",
549
+ "value": "222,583",
550
+ "additional_info": "52.45"
551
+ },
552
+ {
553
+ "label": "Unknown",
554
+ "value": "2,496",
555
+ "additional_info": "0.59"
556
+ }
557
+ ],
558
+ "column2": [
559
+ {
560
+ "label": "Non-Hispanic White",
561
+ "value": "223,907",
562
+ "additional_info": "52.76"
563
+ },
564
+ {
565
+ "label": "Non-Hispanic Black",
566
+ "value": "86,562",
567
+ "additional_info": "20.4"
568
+ },
569
+ {
570
+ "label": "Hispanic",
571
+ "value": "38,084",
572
+ "additional_info": "8.97"
573
+ },
574
+ {
575
+ "label": "Non-Hispanic American Indian or Alaska Native",
576
+ "value": "4,036",
577
+ "additional_info": "0.95"
578
+ },
579
+ {
580
+ "label": "Non-Hispanic Asian",
581
+ "value": "5,650",
582
+ "additional_info": "1.33"
583
+ },
584
+ {
585
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
586
+ "value": "1,193",
587
+ "additional_info": "0.28"
588
+ },
589
+ {
590
+ "label": "Missing",
591
+ "value": "64,954",
592
+ "additional_info": "15.31"
593
+ }
594
+ ]
595
+ },
596
+ {
597
+ "node": "Assisted",
598
+ "value": "5,701 (1.22%)",
599
+ "value_pct": "1.22",
600
+ "summary": "EMS unit only provided assistance (e.g., manpower, equipment) to another agency, member of the public, or another EMS unit.",
601
+ "column1Label": "Gender",
602
+ "column2Label": "Race and Ethnicity",
603
+ "column1": [
604
+ {
605
+ "label": "Female",
606
+ "value": "1,791",
607
+ "additional_info": "31.42"
608
+ },
609
+ {
610
+ "label": "Male",
611
+ "value": "1,910",
612
+ "additional_info": "33.5"
613
+ },
614
+ {
615
+ "label": "Unknown",
616
+ "value": "2,000",
617
+ "additional_info": "35.08"
618
+ }
619
+ ],
620
+ "column2": [
621
+ {
622
+ "label": "Non-Hispanic White",
623
+ "value": "1,593",
624
+ "additional_info": "27.94"
625
+ },
626
+ {
627
+ "label": "Non-Hispanic Black",
628
+ "value": "491",
629
+ "additional_info": "8.61"
630
+ },
631
+ {
632
+ "label": "Hispanic",
633
+ "value": "270",
634
+ "additional_info": "4.74"
635
+ },
636
+ {
637
+ "label": "Non-Hispanic American Indian or Alaska Native",
638
+ "value": "41",
639
+ "additional_info": "0.72"
640
+ },
641
+ {
642
+ "label": "Non-Hispanic Asian",
643
+ "value": "57",
644
+ "additional_info": "1"
645
+ },
646
+ {
647
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
648
+ "value": "**",
649
+ "additional_info": "**"
650
+ },
651
+ {
652
+ "label": "Missing",
653
+ "value": "3,237",
654
+ "additional_info": "56.78"
655
+ }
656
+ ]
657
+ },
658
+ {
659
+ "node": "Dead at Scene",
660
+ "value": "4,088 (0.88%)",
661
+ "value_pct": "0.88",
662
+ "summary": "Patient showed obvious signs of death or Do Not Resuscitate (DNR) order was presented, and no attempt was made to resuscitate the patient.",
663
+ "column1Label": "Gender",
664
+ "column2Label": "Race and Ethnicity",
665
+ "column1": [
666
+ {
667
+ "label": "Female",
668
+ "value": "1,023",
669
+ "additional_info": "25.02"
670
+ },
671
+ {
672
+ "label": "Male",
673
+ "value": "3,014",
674
+ "additional_info": "73.73"
675
+ },
676
+ {
677
+ "label": "Unknown",
678
+ "value": "51",
679
+ "additional_info": "1.25"
680
+ }
681
+ ],
682
+ "column2": [
683
+ {
684
+ "label": "Non-Hispanic White",
685
+ "value": "2,802",
686
+ "additional_info": "68.54"
687
+ },
688
+ {
689
+ "label": "Non-Hispanic Black",
690
+ "value": "273",
691
+ "additional_info": "6.68"
692
+ },
693
+ {
694
+ "label": "Hispanic",
695
+ "value": "207",
696
+ "additional_info": "5.06"
697
+ },
698
+ {
699
+ "label": "Non-Hispanic American Indian or Alaska Native",
700
+ "value": "**",
701
+ "additional_info": "**"
702
+ },
703
+ {
704
+ "label": "Non-Hispanic Asian",
705
+ "value": "65",
706
+ "additional_info": "1.59"
707
+ },
708
+ {
709
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
710
+ "value": "**",
711
+ "additional_info": "**"
712
+ },
713
+ {
714
+ "label": "Missing",
715
+ "value": "712",
716
+ "additional_info": "17.42"
717
+ }
718
+ ]
719
+ },
720
+ {
721
+ "node": "Evaluated no treatment required",
722
+ "value": "5,169 (1.11%)",
723
+ "value_pct": "1.11",
724
+ "summary": "Patient was evaluated and no further treatment/transportation to the hospital was required",
725
+ "column1Label": "Gender",
726
+ "column2Label": "Race and Ethnicity",
727
+ "column1": [
728
+ {
729
+ "label": "Female",
730
+ "value": "2,545",
731
+ "additional_info": "49.24"
732
+ },
733
+ {
734
+ "label": "Male",
735
+ "value": "2,505",
736
+ "additional_info": "48.46"
737
+ },
738
+ {
739
+ "label": "Unknown",
740
+ "value": "119",
741
+ "additional_info": "2.3"
742
+ }
743
+ ],
744
+ "column2": [
745
+ {
746
+ "label": "Non-Hispanic White",
747
+ "value": "2,783",
748
+ "additional_info": "53.84"
749
+ },
750
+ {
751
+ "label": "Non-Hispanic Black",
752
+ "value": "885",
753
+ "additional_info": "17.12"
754
+ },
755
+ {
756
+ "label": "Hispanic",
757
+ "value": "351",
758
+ "additional_info": "6.79"
759
+ },
760
+ {
761
+ "label": "Non-Hispanic American Indian or Alaska Native",
762
+ "value": "59",
763
+ "additional_info": "1.14"
764
+ },
765
+ {
766
+ "label": "Non-Hispanic Asian",
767
+ "value": "87",
768
+ "additional_info": "1.68"
769
+ },
770
+ {
771
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
772
+ "value": "**",
773
+ "additional_info": "**"
774
+ },
775
+ {
776
+ "label": "Missing",
777
+ "value": "988",
778
+ "additional_info": "19.11"
779
+ }
780
+ ]
781
+ },
782
+ {
783
+ "node": "No patient contact",
784
+ "value": "459 (0.1%)",
785
+ "summary": "No patient contact was made (e.g., EMS unit was on standby in case of a medical/traumatic emergency, response was for the purpose of transporting objects, personnel, or equipment not involving a patient).",
786
+ "column1Label": "Gender",
787
+ "column2Label": "Race and Ethnicity",
788
+ "column1": [
789
+ {
790
+ "label": "Female",
791
+ "value": "50",
792
+ "additional_info": "10.89"
793
+ },
794
+ {
795
+ "label": "Male",
796
+ "value": "70",
797
+ "additional_info": "15.25"
798
+ },
799
+ {
800
+ "label": "Unknown",
801
+ "value": "339",
802
+ "additional_info": "73.86"
803
+ }
804
+ ],
805
+ "column2": [
806
+ {
807
+ "label": "Non-Hispanic White",
808
+ "value": "41",
809
+ "additional_info": "8.93"
810
+ },
811
+ {
812
+ "label": "Non-Hispanic Black",
813
+ "value": "**",
814
+ "additional_info": "**"
815
+ },
816
+ {
817
+ "label": "Hispanic",
818
+ "value": "**",
819
+ "additional_info": "**"
820
+ },
821
+ {
822
+ "label": "Non-Hispanic American Indian or Alaska Native",
823
+ "value": "**",
824
+ "additional_info": "**"
825
+ },
826
+ {
827
+ "label": "Non-Hispanic Asian",
828
+ "value": "**",
829
+ "additional_info": "**"
830
+ },
831
+ {
832
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
833
+ "value": "**",
834
+ "additional_info": "**"
835
+ },
836
+ {
837
+ "label": "Missing",
838
+ "value": "388",
839
+ "additional_info": "84.53"
840
+ }
841
+ ]
842
+ },
843
+ {
844
+ "node": "Refused evaluation care",
845
+ "value": "12,641 (2.71%)",
846
+ "summary": "Patient refused any evaluation or care.",
847
+ "column1Label": "Gender",
848
+ "column2Label": "Race and Ethnicity",
849
+ "column1": [
850
+ {
851
+ "label": "Female",
852
+ "value": "6,314",
853
+ "additional_info": "49.95"
854
+ },
855
+ {
856
+ "label": "Male",
857
+ "value": "6,009",
858
+ "additional_info": "47.54"
859
+ },
860
+ {
861
+ "label": "Unknown",
862
+ "value": "318",
863
+ "additional_info": "2.52"
864
+ }
865
+ ],
866
+ "column2": [
867
+ {
868
+ "label": "Non-Hispanic White",
869
+ "value": "7,112",
870
+ "additional_info": "56.26"
871
+ },
872
+ {
873
+ "label": "Non-Hispanic Black",
874
+ "value": "2,366",
875
+ "additional_info": "18.72"
876
+ },
877
+ {
878
+ "label": "Hispanic",
879
+ "value": "1,056",
880
+ "additional_info": "8.35"
881
+ },
882
+ {
883
+ "label": "Non-Hispanic American Indian or Alaska Native",
884
+ "value": "130",
885
+ "additional_info": "1.03"
886
+ },
887
+ {
888
+ "label": "Non-Hispanic Asian",
889
+ "value": "128",
890
+ "additional_info": "1.01"
891
+ },
892
+ {
893
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
894
+ "value": "26",
895
+ "additional_info": "0.21"
896
+ },
897
+ {
898
+ "label": "Missing",
899
+ "value": "1,823",
900
+ "additional_info": "14.42"
901
+ }
902
+ ]
903
+ },
904
+ {
905
+ "node": "Treated",
906
+ "value": "438,974 (93.97%)",
907
+ "value_pct": "93.97",
908
+ "summary": "Patient was evaluated and treatment was provided.",
909
+ "column1Label": "Gender",
910
+ "column2Label": "Race and Ethnicity",
911
+ "column1": [
912
+ {
913
+ "label": "Female",
914
+ "value": "206,436",
915
+ "additional_info": "47.03"
916
+ },
917
+ {
918
+ "label": "Male",
919
+ "value": "229,917",
920
+ "additional_info": "52.38"
921
+ },
922
+ {
923
+ "label": "Unknown",
924
+ "value": "2,621",
925
+ "additional_info": "0.6"
926
+ }
927
+ ],
928
+ "column2": [
929
+ {
930
+ "label": "Non-Hispanic White",
931
+ "value": "231,620",
932
+ "additional_info": "52.76"
933
+ },
934
+ {
935
+ "label": "Non-Hispanic Black",
936
+ "value": "89,207",
937
+ "additional_info": "20.32"
938
+ },
939
+ {
940
+ "label": "Hispanic",
941
+ "value": "39,497",
942
+ "additional_info": "9"
943
+ },
944
+ {
945
+ "label": "Non-Hispanic American Indian or Alaska Native",
946
+ "value": "4,214",
947
+ "additional_info": "0.96"
948
+ },
949
+ {
950
+ "label": "Non-Hispanic Asian",
951
+ "value": "5,820",
952
+ "additional_info": "1.33"
953
+ },
954
+ {
955
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
956
+ "value": "1,222",
957
+ "additional_info": "0.28"
958
+ },
959
+ {
960
+ "label": "Missing",
961
+ "value": "67,394",
962
+ "additional_info": "15.35"
963
+ }
964
+ ]
965
+ },
966
+ {
967
+ "node": "Unknown",
968
+ "value": "104 (0.02%)",
969
+ "summary": "Type of treatment provided is unknown.",
970
+ "column1Label": "Gender",
971
+ "column2Label": "Race and Ethnicity",
972
+ "column1": [
973
+ {
974
+ "label": "Female",
975
+ "value": "36",
976
+ "additional_info": "34.62"
977
+ },
978
+ {
979
+ "label": "Male",
980
+ "value": "56",
981
+ "additional_info": "53.85"
982
+ },
983
+ {
984
+ "label": "Unknown",
985
+ "value": "**",
986
+ "additional_info": "**"
987
+ }
988
+ ],
989
+ "column2": [
990
+ {
991
+ "label": "Non-Hispanic White",
992
+ "value": "47",
993
+ "additional_info": "45.19"
994
+ },
995
+ {
996
+ "label": "Non-Hispanic Black",
997
+ "value": "",
998
+ "additional_info": ""
999
+ },
1000
+ {
1001
+ "label": "Hispanic",
1002
+ "value": "",
1003
+ "additional_info": ""
1004
+ },
1005
+ {
1006
+ "label": "Non-Hispanic American Indian or Alaska Native",
1007
+ "value": "",
1008
+ "additional_info": ""
1009
+ },
1010
+ {
1011
+ "label": "Non-Hispanic Asian",
1012
+ "value": "",
1013
+ "additional_info": ""
1014
+ },
1015
+ {
1016
+ "label": "Non-Hispanic Native Hawaiian or Other Pacific Islander",
1017
+ "value": "",
1018
+ "additional_info": ""
1019
+ },
1020
+ {
1021
+ "label": "Missing",
1022
+ "value": "39",
1023
+ "additional_info": "37.5"
1024
+ }
1025
+ ]
1026
+ }
1027
+ ],
1028
+ "tableData": [
1029
+ {
1030
+ "Disposition": "Assist, Agency",
1031
+ "Type of Treatment": "Assisted",
1032
+ "Final Outcome": "N/A",
1033
+ "Number of Patients": "2,356"
1034
+ },
1035
+ {
1036
+ "Disposition": "Assist, Public",
1037
+ "Type of Treatment": "Assisted",
1038
+ "Final Outcome": "N/A",
1039
+ "Number of Patients": "859"
1040
+ },
1041
+ {
1042
+ "Disposition": "Assist, Unit",
1043
+ "Type of Treatment": "Assisted",
1044
+ "Final Outcome": "N/A",
1045
+ "Number of Patients": "2,486"
1046
+ },
1047
+ {
1048
+ "Disposition": "Patient Dead at Scene-No Resuscitation Attempted (With Transport)",
1049
+ "Type of Treatment": "Dead at scene",
1050
+ "Final Outcome": "Dead",
1051
+ "Number of Patients": "123"
1052
+ },
1053
+ {
1054
+ "Disposition": "Patient Dead at Scene-No Resuscitation Attempted (Without Transport)",
1055
+ "Type of Treatment": "Dead at scene",
1056
+ "Final Outcome": "Dead",
1057
+ "Number of Patients": "3,965"
1058
+ },
1059
+ {
1060
+ "Disposition": "Patient Dead at Scene-Resuscitation Attempted (With Transport)",
1061
+ "Type of Treatment": "Treated",
1062
+ "Final Outcome": "Dead",
1063
+ "Number of Patients": "**"
1064
+ },
1065
+ {
1066
+ "Disposition": "Patient Dead at Scene-Resuscitation Attempted (Without Transport)",
1067
+ "Type of Treatment": "Treated",
1068
+ "Final Outcome": "Dead",
1069
+ "Number of Patients": "631"
1070
+ },
1071
+ {
1072
+ "Disposition": "Patient Evaluated, No Treatment/Transport Required",
1073
+ "Type of Treatment": "Evaluated no treatment required",
1074
+ "Final Outcome": "Released",
1075
+ "Number of Patients": "5,169"
1076
+ },
1077
+ {
1078
+ "Disposition": "Patient Refused Evaluation/Care (With Transport)",
1079
+ "Type of Treatment": "Refused evaluation care",
1080
+ "Final Outcome": "Transported to hospital",
1081
+ "Number of Patients": "860"
1082
+ },
1083
+ {
1084
+ "Disposition": "Patient Refused Evaluation/Care (Without Transport)",
1085
+ "Type of Treatment": "Refused evaluation care",
1086
+ "Final Outcome": "Released",
1087
+ "Number of Patients": "11,781"
1088
+ },
1089
+ {
1090
+ "Disposition": "Patient Treated, Released (AMA)",
1091
+ "Type of Treatment": "Treated",
1092
+ "Final Outcome": "Released",
1093
+ "Number of Patients": "6,780"
1094
+ },
1095
+ {
1096
+ "Disposition": "Patient Treated, Released (per protocol)",
1097
+ "Type of Treatment": "Treated",
1098
+ "Final Outcome": "Released",
1099
+ "Number of Patients": "3,522"
1100
+ },
1101
+ {
1102
+ "Disposition": "Patient Treated, Transferred Care to Another EMS Unit",
1103
+ "Type of Treatment": "Treated",
1104
+ "Final Outcome": "Transported to hospital",
1105
+ "Number of Patients": "24,432"
1106
+ },
1107
+ {
1108
+ "Disposition": "Patient Treated, Transported by Law Enforcement",
1109
+ "Type of Treatment": "Treated",
1110
+ "Final Outcome": "Transported to facility",
1111
+ "Number of Patients": "4,227"
1112
+ },
1113
+ {
1114
+ "Disposition": "Patient Treated, Transported by Private Vehicle",
1115
+ "Type of Treatment": "Treated",
1116
+ "Final Outcome": "Transported to facility",
1117
+ "Number of Patients": "277"
1118
+ },
1119
+ {
1120
+ "Disposition": "Patient Treated, Transported by this EMS Unit",
1121
+ "Type of Treatment": "Treated",
1122
+ "Final Outcome": "Transported to hospital",
1123
+ "Number of Patients": "399,088"
1124
+ },
1125
+ {
1126
+ "Disposition": "Standby-Public Safety, Fire, or EMS Operational Support Provided",
1127
+ "Type of Treatment": "No patient contact",
1128
+ "Final Outcome": "N/A",
1129
+ "Number of Patients": "458"
1130
+ },
1131
+ {
1132
+ "Disposition": "Transport Non-Patient, Organs, etc.",
1133
+ "Type of Treatment": "No patient contact",
1134
+ "Final Outcome": "N/A",
1135
+ "Number of Patients": "**"
1136
+ },
1137
+ {
1138
+ "Disposition": "Unknown",
1139
+ "Type of Treatment": "Unknown",
1140
+ "Final Outcome": "N/A",
1141
+ "Number of Patients": "104"
1142
+ }
1143
+ ]
1144
+ }
1145
+ ],
1146
+ "dataFileName": "valid-sankey-data.json",
1147
+ "dataFileSourceType": "file",
1148
+ "formattedData": [
1149
+ {
1150
+ "links": [
1151
+ {
1152
+ "source": "Suicide EMS Responses",
1153
+ "target": "Dead at Scene",
1154
+ "value": 4088
1155
+ },
1156
+ {
1157
+ "source": "Suicide EMS Responses",
1158
+ "target": "Treated",
1159
+ "value": 438974
1160
+ },
1161
+ {
1162
+ "source": "Suicide EMS Responses",
1163
+ "target": "Assisted",
1164
+ "value": 5701
1165
+ },
1166
+ {
1167
+ "source": "Suicide EMS Responses",
1168
+ "target": "No patient contact",
1169
+ "value": 459
1170
+ },
1171
+ {
1172
+ "source": "Suicide EMS Responses",
1173
+ "target": "Refused evaluation care",
1174
+ "value": 12641
1175
+ },
1176
+ {
1177
+ "source": "Suicide EMS Responses",
1178
+ "target": "Evaluated no treatment required",
1179
+ "value": 5169
1180
+ },
1181
+ {
1182
+ "source": "Suicide EMS Responses",
1183
+ "target": "Unknown",
1184
+ "value": 104
1185
+ },
1186
+ {
1187
+ "source": "Dead at Scene",
1188
+ "target": "Dead",
1189
+ "value": 4088
1190
+ },
1191
+ {
1192
+ "source": "Treated",
1193
+ "target": "Dead",
1194
+ "value": 648
1195
+ },
1196
+ {
1197
+ "source": "Treated",
1198
+ "target": "Transported to hospital",
1199
+ "value": 423520
1200
+ },
1201
+ {
1202
+ "source": "Treated",
1203
+ "target": "Transported to facility",
1204
+ "value": 4504
1205
+ },
1206
+ {
1207
+ "source": "Treated",
1208
+ "target": "Released",
1209
+ "value": 10302
1210
+ },
1211
+ {
1212
+ "source": "Refused evaluation care",
1213
+ "target": "Released",
1214
+ "value": 11781
1215
+ },
1216
+ {
1217
+ "source": "Refused evaluation care",
1218
+ "target": "Transported to hospital",
1219
+ "value": 860
1220
+ },
1221
+ {
1222
+ "source": "Evaluated no treatment required",
1223
+ "target": "Released",
1224
+ "value": 5169
1225
+ }
1226
+ ],
1227
+ "storyNodeText": [
1228
+ {
1229
+ "StoryNode": "Suicide EMS Responses",
1230
+ "segmentTextBefore": "In 2022, there were",
1231
+ "segmentTextAfter": "Suicide EMS Responses"
1232
+ },
1233
+ {
1234
+ "StoryNode": "Treated",
1235
+ "segmentTextBefore": "of which,",
1236
+ "segmentTextAfter": "were treated"
1237
+ }
1238
+ ],
1239
+ "tableData": [
1240
+ {
1241
+ "Disposition": "Assist, Agency",
1242
+ "Type of Treatment": "Assisted",
1243
+ "Final Outcome": "N/A",
1244
+ "Number of Patients": "2,356"
1245
+ },
1246
+ {
1247
+ "Disposition": "Assist, Public",
1248
+ "Type of Treatment": "Assisted",
1249
+ "Final Outcome": "N/A",
1250
+ "Number of Patients": "859"
1251
+ },
1252
+ {
1253
+ "Disposition": "Assist, Unit",
1254
+ "Type of Treatment": "Assisted",
1255
+ "Final Outcome": "N/A",
1256
+ "Number of Patients": "2,486"
1257
+ },
1258
+ {
1259
+ "Disposition": "Patient Dead at Scene-No Resuscitation Attempted (With Transport)",
1260
+ "Type of Treatment": "Dead at scene",
1261
+ "Final Outcome": "Dead",
1262
+ "Number of Patients": "123"
1263
+ },
1264
+ {
1265
+ "Disposition": "Patient Dead at Scene-No Resuscitation Attempted (Without Transport)",
1266
+ "Type of Treatment": "Dead at scene",
1267
+ "Final Outcome": "Dead",
1268
+ "Number of Patients": "3,965"
1269
+ },
1270
+ {
1271
+ "Disposition": "Patient Dead at Scene-Resuscitation Attempted (With Transport)",
1272
+ "Type of Treatment": "Treated",
1273
+ "Final Outcome": "Dead",
1274
+ "Number of Patients": "**"
1275
+ },
1276
+ {
1277
+ "Disposition": "Patient Dead at Scene-Resuscitation Attempted (Without Transport)",
1278
+ "Type of Treatment": "Treated",
1279
+ "Final Outcome": "Dead",
1280
+ "Number of Patients": "631"
1281
+ },
1282
+ {
1283
+ "Disposition": "Patient Evaluated, No Treatment/Transport Required",
1284
+ "Type of Treatment": "Evaluated no treatment required",
1285
+ "Final Outcome": "Released",
1286
+ "Number of Patients": "5,169"
1287
+ },
1288
+ {
1289
+ "Disposition": "Patient Refused Evaluation/Care (With Transport)",
1290
+ "Type of Treatment": "Refused evaluation care",
1291
+ "Final Outcome": "Transported to hospital",
1292
+ "Number of Patients": "860"
1293
+ },
1294
+ {
1295
+ "Disposition": "Patient Refused Evaluation/Care (Without Transport)",
1296
+ "Type of Treatment": "Refused evaluation care",
1297
+ "Final Outcome": "Released",
1298
+ "Number of Patients": "11,781"
1299
+ },
1300
+ {
1301
+ "Disposition": "Patient Treated, Released (AMA)",
1302
+ "Type of Treatment": "Treated",
1303
+ "Final Outcome": "Released",
1304
+ "Number of Patients": "6,780"
1305
+ },
1306
+ {
1307
+ "Disposition": "Patient Treated, Released (per protocol)",
1308
+ "Type of Treatment": "Treated",
1309
+ "Final Outcome": "Released",
1310
+ "Number of Patients": "3,522"
1311
+ },
1312
+ {
1313
+ "Disposition": "Patient Treated, Transferred Care to Another EMS Unit",
1314
+ "Type of Treatment": "Treated",
1315
+ "Final Outcome": "Transported to hospital",
1316
+ "Number of Patients": "24,432"
1317
+ },
1318
+ {
1319
+ "Disposition": "Patient Treated, Transported by Law Enforcement",
1320
+ "Type of Treatment": "Treated",
1321
+ "Final Outcome": "Transported to facility",
1322
+ "Number of Patients": "4,227"
1323
+ },
1324
+ {
1325
+ "Disposition": "Patient Treated, Transported by Private Vehicle",
1326
+ "Type of Treatment": "Treated",
1327
+ "Final Outcome": "Transported to facility",
1328
+ "Number of Patients": "277"
1329
+ },
1330
+ {
1331
+ "Disposition": "Patient Treated, Transported by this EMS Unit",
1332
+ "Type of Treatment": "Treated",
1333
+ "Final Outcome": "Transported to hospital",
1334
+ "Number of Patients": "399,088"
1335
+ },
1336
+ {
1337
+ "Disposition": "Standby-Public Safety, Fire, or EMS Operational Support Provided",
1338
+ "Type of Treatment": "No patient contact",
1339
+ "Final Outcome": "N/A",
1340
+ "Number of Patients": "458"
1341
+ },
1342
+ {
1343
+ "Disposition": "Transport Non-Patient, Organs, etc.",
1344
+ "Type of Treatment": "No patient contact",
1345
+ "Final Outcome": "N/A",
1346
+ "Number of Patients": "**"
1347
+ },
1348
+ {
1349
+ "Disposition": "Unknown",
1350
+ "Type of Treatment": "Unknown",
1351
+ "Final Outcome": "N/A",
1352
+ "Number of Patients": "104"
1353
+ }
1354
+ ]
1355
+ }
1356
+ ],
1357
+ "dataDescription": {
1358
+ "horizontal": false,
1359
+ "series": false
1360
+ },
1361
+ "validated": 4.23,
1362
+ "description": "This is placeholder text. Use this field to describe the story told by the sankey diagram data. Please navigate to the editor panel under General -> SUBTEXT/CITATION to update.",
1363
+ "footnotes": "**Counts fewer than 20 are suppressed for confidentiality reasons."
1364
+ }