@cdc/dashboard 4.24.12 → 4.25.2-25

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 (60) hide show
  1. package/dist/cdcdashboard.js +74365 -72646
  2. package/examples/all-components.json +529 -4607
  3. package/examples/dashboard-gallery.json +397 -397
  4. package/examples/private/DEV-10120.json +1294 -0
  5. package/examples/private/DEV-10527.json +564 -0
  6. package/examples/private/DEV-10586.json +54319 -0
  7. package/examples/private/DEV-10856.json +54319 -0
  8. package/examples/private/DEV-9989.json +229 -0
  9. package/examples/private/art-dashboard.json +2 -2
  10. package/examples/private/bird-flu-2.json +440 -0
  11. package/examples/private/bird-flu.json +413 -0
  12. package/examples/private/dashboard-config-ehdi.json +29915 -0
  13. package/examples/private/dashboard-map-filter.json +815 -0
  14. package/examples/private/dashboard-margins.js +15 -0
  15. package/examples/private/dataset.json +1452 -0
  16. package/examples/private/dev-10856-2.json +1348 -0
  17. package/examples/private/ehdi-data.json +29502 -0
  18. package/examples/private/exposure-source-h5-data.csv +26 -0
  19. package/examples/private/feelings.json +1 -0
  20. package/examples/private/nhis.json +1792 -0
  21. package/examples/private/workforce.json +2041 -0
  22. package/index.html +5 -8
  23. package/package.json +9 -9
  24. package/src/CdcDashboard.tsx +5 -8
  25. package/src/CdcDashboardComponent.tsx +70 -60
  26. package/src/_stories/Dashboard.stories.tsx +63 -0
  27. package/src/_stories/_mock/dashboard-filter-asc.json +551 -0
  28. package/src/_stories/_mock/data-bite-dash-test.json +1 -0
  29. package/src/_stories/_mock/data-bite-dash-test_1.json +1 -0
  30. package/src/_stories/_mock/data-bite-dash-test_1_1.json +1 -0
  31. package/src/_stories/_mock/data-bite-dash-test_1_1_1.json +1 -0
  32. package/src/components/CollapsibleVisualizationRow.tsx +3 -3
  33. package/src/components/Column.tsx +12 -1
  34. package/src/components/DashboardFilters/DashboardFilters.tsx +14 -9
  35. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +23 -8
  36. package/src/components/DashboardFilters/DashboardFiltersEditor/components/DeleteFilterModal.tsx +13 -3
  37. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +130 -41
  38. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +10 -7
  39. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +11 -12
  40. package/src/components/DashboardFilters/dashboardfilter.styles.css +2 -2
  41. package/src/components/ExpandCollapseButtons.tsx +1 -1
  42. package/src/components/Header/Header.tsx +1 -2
  43. package/src/components/MultiConfigTabs/MultiConfigTabs.tsx +2 -2
  44. package/src/components/MultiConfigTabs/MultiTabs.tsx +1 -1
  45. package/src/components/VisualizationRow.tsx +13 -3
  46. package/src/components/Widget.tsx +9 -3
  47. package/src/helpers/addValuesToDashboardFilters.ts +6 -5
  48. package/src/helpers/apiFilterHelpers.ts +11 -6
  49. package/src/helpers/changeFilterActive.ts +17 -4
  50. package/src/helpers/getFilteredData.ts +13 -4
  51. package/src/helpers/getUpdateConfig.ts +11 -4
  52. package/src/helpers/loadAPIFilters.ts +6 -4
  53. package/src/helpers/tests/updatesChildFilters.test.ts +56 -0
  54. package/src/helpers/updateChildFilters.ts +50 -0
  55. package/src/index.tsx +1 -0
  56. package/src/scss/main.scss +1 -15
  57. package/src/store/dashboard.actions.ts +2 -2
  58. package/src/store/dashboard.reducer.ts +60 -29
  59. package/src/types/DashboardConfig.ts +2 -0
  60. package/src/types/SharedFilter.ts +1 -1
@@ -0,0 +1,1294 @@
1
+ {
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "sharedFilters": [
5
+ {
6
+ "key": "Class",
7
+ "showDropdown": true,
8
+ "type": "urlfilter",
9
+ "filterBy": "",
10
+ "tier": 1,
11
+ "apiFilter": {
12
+ "apiEndpoint": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Class&$order=Class",
13
+ "valueSelector": "Class",
14
+ "textSelector": ""
15
+ },
16
+ "usedBy": []
17
+ },
18
+ {
19
+ "key": "Topic",
20
+ "showDropdown": true,
21
+ "type": "urlfilter",
22
+ "apiFilter": {
23
+ "apiEndpoint": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Topic&$order=Topic",
24
+ "valueSelector": "Topic",
25
+ "textSelector": ""
26
+ },
27
+ "tier": 1,
28
+ "parents": [
29
+ "Class"
30
+ ]
31
+ },
32
+ {
33
+ "key": "Year",
34
+ "showDropdown": true,
35
+ "type": "urlfilter",
36
+ "apiFilter": {
37
+ "apiEndpoint": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Year&$order=Year%20Desc",
38
+ "valueSelector": "Year",
39
+ "textSelector": ""
40
+ },
41
+ "parents": [
42
+ "Class",
43
+ "Topic"
44
+ ],
45
+ "tier": 2
46
+ },
47
+ {
48
+ "key": "Question",
49
+ "showDropdown": true,
50
+ "type": "urlfilter",
51
+ "apiFilter": {
52
+ "apiEndpoint": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$select=distinct%20Question",
53
+ "valueSelector": "Question",
54
+ "textSelector": ""
55
+ },
56
+ "parents": [
57
+ "Class",
58
+ "Topic",
59
+ "Year"
60
+ ],
61
+ "tier": 1,
62
+ "usedBy": []
63
+ },
64
+ {
65
+ "key": "View By",
66
+ "showDropdown": true,
67
+ "type": "urlfilter",
68
+ "filterBy": "",
69
+ "apiFilter": {
70
+ "apiEndpoint": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Category,%20Category_Order&$order=Category_Order",
71
+ "valueSelector": "Category",
72
+ "textSelector": ""
73
+ },
74
+ "tier": 1,
75
+ "parents": [
76
+ "Class",
77
+ "Topic",
78
+ "Year",
79
+ "Question"
80
+ ],
81
+ "usedBy": [
82
+ "map1725917896547",
83
+ "chart1725918024864",
84
+ "table1725918028606"
85
+ ]
86
+ },
87
+ {
88
+ "key": "Data Type",
89
+ "showDropdown": true,
90
+ "type": "urlfilter",
91
+ "apiFilter": {
92
+ "apiEndpoint": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Data_Type&$order=Data_Type%20Desc",
93
+ "valueSelector": "Data_Type",
94
+ "textSelector": ""
95
+ },
96
+ "parents": [
97
+ "Class",
98
+ "Topic",
99
+ "Year",
100
+ "Question",
101
+ "View By"
102
+ ]
103
+ },
104
+ {
105
+ "key": "Dataset",
106
+ "showDropdown": true,
107
+ "type": "urlfilter",
108
+ "apiFilter": {
109
+ "apiEndpoint": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Dataset&$order=Dataset%20Desc",
110
+ "valueSelector": "Dataset",
111
+ "textSelector": ""
112
+ },
113
+ "parents": [
114
+ "Class",
115
+ "Topic",
116
+ "Year",
117
+ "Question",
118
+ "View By",
119
+ "Data Type"
120
+ ]
121
+ }
122
+ ]
123
+ },
124
+ "rows": [
125
+ {
126
+ "columns": [
127
+ {
128
+ "width": 12,
129
+ "widget": "dashboardFilters1725917968954"
130
+ }
131
+ ],
132
+ "uuid": 1725917970561,
133
+ "dataDescription": {},
134
+ "dataKey": ""
135
+ },
136
+ {
137
+ "columns": [
138
+ {
139
+ "width": 12,
140
+ "widget": "markup-include1727985995619"
141
+ }
142
+ ],
143
+ "uuid": 1727986044905
144
+ },
145
+ {
146
+ "columns": [
147
+ {
148
+ "width": 12,
149
+ "widget": "dashboardFilters1725972557434"
150
+ }
151
+ ],
152
+ "uuid": 1727986044905
153
+ },
154
+ {
155
+ "columns": [
156
+ {
157
+ "width": 12,
158
+ "widget": "map1725917896547"
159
+ },
160
+ {
161
+ "width": 12,
162
+ "widget": "chart1725918024864"
163
+ },
164
+ {
165
+ "width": 12,
166
+ "widget": "table1725918028606"
167
+ }
168
+ ],
169
+ "toggle": true,
170
+ "uuid": 1731031196573,
171
+ "footnotesId": "footnotes1734535863833"
172
+ },
173
+ {
174
+ "columns": [
175
+ {
176
+ "width": 12,
177
+ "widget": "markup-include1731457764699"
178
+ }
179
+ ]
180
+ },
181
+ {
182
+ "columns": [
183
+ {
184
+ "width": 12,
185
+ "widget": "markup-include1733869550808"
186
+ }
187
+ ],
188
+ "footnotesId": "footnotes1734536357083"
189
+ },
190
+ {
191
+ "columns": [
192
+ {
193
+ "width": 12,
194
+ "widget": "markup-include1733869622293"
195
+ }
196
+ ],
197
+ "uuid": 1733871179453,
198
+ "footnotesId": "footnotes1734536670964"
199
+ },
200
+ {
201
+ "columns": [
202
+ {
203
+ "width": 12,
204
+ "widget": "markup-include1733869573450"
205
+ }
206
+ ],
207
+ "uuid": 1733871179453
208
+ }
209
+ ],
210
+ "visualizations": {
211
+ "map1725917896547": {
212
+ "annotations": [],
213
+ "general": {
214
+ "geoType": "us",
215
+ "noStateFoundMessage": "Map Unavailable",
216
+ "annotationDropdownText": "Annotations",
217
+ "geoBorderColor": "darkGray",
218
+ "headerColor": "theme-blue",
219
+ "title": "Explore by Topic Map",
220
+ "showTitle": false,
221
+ "showSidebar": true,
222
+ "showDownloadButton": true,
223
+ "showDownloadMediaButton": false,
224
+ "displayAsHex": false,
225
+ "displayStateLabels": true,
226
+ "territoriesLabel": "Territories",
227
+ "territoriesAlwaysShow": false,
228
+ "language": "en",
229
+ "geoLabelOverride": "",
230
+ "hasRegions": false,
231
+ "fullBorder": false,
232
+ "type": "data",
233
+ "convertFipsCodes": true,
234
+ "palette": {
235
+ "isReversed": false
236
+ },
237
+ "allowMapZoom": true,
238
+ "hideGeoColumnInTooltip": false,
239
+ "hidePrimaryColumnInTooltip": false,
240
+ "statePicked": {
241
+ "fipsCode": "01",
242
+ "stateName": "Alabama"
243
+ },
244
+ "expandDataTable": false,
245
+ "subtext": "<strong>Data Source:</strong> <a>Behavioral Risk Factor Surveillance System (BRFSS)</a>",
246
+ "footnotes": "<p>The legend quantiles in the map are based on the minimum and maximum data values for the selected search criteria. These quantiles may update with the change in search criteria.</p>\n\n<p class=\"mt-2\">MMSA data belonging to territories are not displayed on the map. Please visit the Chart or Table view for territories MMSA data.</p>",
247
+ "showDownloadImgButton": true
248
+ },
249
+ "type": "map",
250
+ "color": "yelloworangebrown",
251
+ "columns": {
252
+ "geo": {
253
+ "name": "State",
254
+ "label": "Location",
255
+ "tooltip": false,
256
+ "dataTable": true
257
+ },
258
+ "primary": {
259
+ "dataTable": false,
260
+ "tooltip": true,
261
+ "prefix": "",
262
+ "suffix": "%",
263
+ "name": "Percentage",
264
+ "label": "Percentage",
265
+ "roundToPlace": "1"
266
+ },
267
+ "navigate": {
268
+ "name": ""
269
+ },
270
+ "latitude": {
271
+ "name": "GeoLocation_Lat"
272
+ },
273
+ "longitude": {
274
+ "name": "GeoLocation_Long"
275
+ },
276
+ "additionalColumn1": {
277
+ "label": "95% Confidence Interval",
278
+ "dataTable": false,
279
+ "tooltips": false,
280
+ "prefix": "",
281
+ "suffix": "",
282
+ "name": "95%_CI",
283
+ "tooltip": true
284
+ },
285
+ "additionalColumn2": {
286
+ "label": "Response",
287
+ "dataTable": false,
288
+ "tooltips": false,
289
+ "prefix": "",
290
+ "suffix": "",
291
+ "name": "Response",
292
+ "tooltip": true
293
+ }
294
+ },
295
+ "legend": {
296
+ "descriptions": {},
297
+ "specialClasses": [],
298
+ "unified": false,
299
+ "singleColumn": false,
300
+ "singleRow": true,
301
+ "verticalSorted": false,
302
+ "showSpecialClassesLast": false,
303
+ "dynamicDescription": false,
304
+ "type": "equalnumber",
305
+ "numberOfItems": 4,
306
+ "position": "bottom",
307
+ "title": "",
308
+ "style": "boxes",
309
+ "subStyle": "linear blocks",
310
+ "tickRotation": "",
311
+ "singleColumnLegend": false,
312
+ "hideBorder": false,
313
+ "categoryValuesOrder": [
314
+ "40.7000-48.3000"
315
+ ]
316
+ },
317
+ "filters": [
318
+ {
319
+ "order": "asc",
320
+ "label": "View By Subcategory",
321
+ "columnName": "Subcategory",
322
+ "filterStyle": "dropdown"
323
+ },
324
+ {
325
+ "order": "asc",
326
+ "label": "Response",
327
+ "columnName": "Response",
328
+ "filterStyle": "dropdown"
329
+ }
330
+ ],
331
+ "table": {
332
+ "wrapColumns": false,
333
+ "label": "Data Table",
334
+ "expanded": false,
335
+ "limitHeight": false,
336
+ "height": "",
337
+ "caption": "",
338
+ "showDownloadUrl": false,
339
+ "showDataTableLink": false,
340
+ "showFullGeoNameInCSV": false,
341
+ "forceDisplay": false,
342
+ "download": true,
343
+ "indexLabel": "",
344
+ "showDownloadLinkBelow": false
345
+ },
346
+ "tooltips": {
347
+ "appearanceType": "hover",
348
+ "linkLabel": "Learn More",
349
+ "capitalizeLabels": true,
350
+ "opacity": 90
351
+ },
352
+ "visual": {
353
+ "minBubbleSize": 1,
354
+ "maxBubbleSize": 20,
355
+ "extraBubbleBorder": false,
356
+ "cityStyle": "circle",
357
+ "cityStyleLabel": "",
358
+ "showBubbleZeros": false,
359
+ "additionalCityStyles": [],
360
+ "geoCodeCircleSize": 8
361
+ },
362
+ "mapPosition": {
363
+ "coordinates": [
364
+ 0,
365
+ 30
366
+ ],
367
+ "zoom": 1
368
+ },
369
+ "map": {
370
+ "layers": [],
371
+ "patterns": []
372
+ },
373
+ "hexMap": {
374
+ "type": "",
375
+ "shapeGroups": [
376
+ {
377
+ "legendTitle": "",
378
+ "legendDescription": "",
379
+ "items": [
380
+ {
381
+ "key": "",
382
+ "shape": "Arrow Up",
383
+ "column": "",
384
+ "operator": "=",
385
+ "value": ""
386
+ }
387
+ ]
388
+ }
389
+ ]
390
+ },
391
+ "filterBehavior": "Filter Change",
392
+ "filterIntro": "",
393
+ "openModal": true,
394
+ "uid": "map1725917896547",
395
+ "dataDescription": {
396
+ "horizontal": false,
397
+ "series": false
398
+ },
399
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic",
400
+ "version": "4.25.1"
401
+ },
402
+ "dashboardFilters1725917968954": {
403
+ "filters": [],
404
+ "filterBehavior": "Apply Button",
405
+ "newViz": true,
406
+ "openModal": true,
407
+ "uid": "dashboardFilters1725917968954",
408
+ "type": "dashboardFilters",
409
+ "sharedFilterIndexes": [
410
+ 0,
411
+ 1,
412
+ 2,
413
+ 3
414
+ ],
415
+ "visualizationType": "dashboardFilters",
416
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic",
417
+ "dataDescription": {
418
+ "horizontal": false,
419
+ "series": false
420
+ },
421
+ "autoLoad": false,
422
+ "applyFiltersButtonText": "View Results"
423
+ },
424
+ "chart1725918024864": {
425
+ "annotations": [],
426
+ "type": "chart",
427
+ "debugSvg": false,
428
+ "chartMessage": {
429
+ "noData": "No Data Available"
430
+ },
431
+ "title": "Subcategories by State Bar Chart",
432
+ "showTitle": false,
433
+ "showDownloadMediaButton": false,
434
+ "theme": "theme-blue",
435
+ "animate": false,
436
+ "fontSize": "medium",
437
+ "lineDatapointStyle": "hover",
438
+ "lineDatapointColor": "Same as Line",
439
+ "barHasBorder": "false",
440
+ "isLollipopChart": false,
441
+ "lollipopShape": "circle",
442
+ "lollipopColorStyle": "two-tone",
443
+ "visualizationSubType": "regular",
444
+ "barStyle": "flat",
445
+ "roundingStyle": "standard",
446
+ "tipRounding": "top",
447
+ "isResponsiveTicks": true,
448
+ "general": {
449
+ "annotationDropdownText": "Annotations",
450
+ "showDownloadButton": false,
451
+ "showMissingDataLabel": true,
452
+ "showSuppressedSymbol": true,
453
+ "showZeroValueData": true,
454
+ "hideNullValue": true
455
+ },
456
+ "padding": {
457
+ "left": 5,
458
+ "right": 5
459
+ },
460
+ "preliminaryData": [],
461
+ "yAxis": {
462
+ "hideAxis": false,
463
+ "displayNumbersOnBar": false,
464
+ "hideLabel": false,
465
+ "hideTicks": false,
466
+ "size": 50,
467
+ "gridLines": false,
468
+ "enablePadding": false,
469
+ "min": "",
470
+ "max": "",
471
+ "labelColor": "#333",
472
+ "tickLabelColor": "#333",
473
+ "tickColor": "#333",
474
+ "rightHideAxis": true,
475
+ "rightAxisSize": 0,
476
+ "rightLabel": "",
477
+ "rightLabelOffsetSize": 0,
478
+ "rightAxisLabelColor": "#333",
479
+ "rightAxisTickLabelColor": "#333",
480
+ "rightAxisTickColor": "#333",
481
+ "numTicks": "",
482
+ "axisPadding": 0,
483
+ "scalePadding": 10,
484
+ "tickRotation": 0,
485
+ "anchors": [],
486
+ "shoMissingDataLabel": true,
487
+ "showMissingDataLine": true,
488
+ "categories": [],
489
+ "labelPlacement": "On Date/Category Axis",
490
+ "label": "Percentage (%)"
491
+ },
492
+ "boxplot": {
493
+ "plots": [],
494
+ "borders": "true",
495
+ "plotOutlierValues": false,
496
+ "plotNonOutlierValues": true,
497
+ "labels": {
498
+ "q1": "Lower Quartile",
499
+ "q2": "q2",
500
+ "q3": "Upper Quartile",
501
+ "q4": "q4",
502
+ "minimum": "Minimum",
503
+ "maximum": "Maximum",
504
+ "mean": "Mean",
505
+ "median": "Median",
506
+ "sd": "Standard Deviation",
507
+ "iqr": "Interquartile Range",
508
+ "total": "Total",
509
+ "outliers": "Outliers",
510
+ "values": "Values",
511
+ "lowerBounds": "Lower Bounds",
512
+ "upperBounds": "Upper Bounds"
513
+ },
514
+ "firstQuartilePercentage": 25,
515
+ "thirdQuartilePercentage": 75,
516
+ "boxWidthPercentage": 40,
517
+ "legend": {
518
+ "showHowToReadText": false,
519
+ "howToReadText": ""
520
+ }
521
+ },
522
+ "topAxis": {
523
+ "hasLine": false
524
+ },
525
+ "isLegendValue": true,
526
+ "barThickness": 0.35,
527
+ "barHeight": 25,
528
+ "barSpace": 15,
529
+ "heights": {
530
+ "vertical": 300,
531
+ "horizontal": 2240
532
+ },
533
+ "xAxis": {
534
+ "sortDates": false,
535
+ "anchors": [],
536
+ "type": "categorical",
537
+ "showTargetLabel": true,
538
+ "targetLabel": "Target",
539
+ "hideAxis": false,
540
+ "hideLabel": false,
541
+ "hideTicks": false,
542
+ "size": "200",
543
+ "tickRotation": "30",
544
+ "min": "0",
545
+ "max": "100",
546
+ "labelColor": "#333",
547
+ "tickLabelColor": "#333",
548
+ "tickColor": "#333",
549
+ "numTicks": "",
550
+ "labelOffset": 0,
551
+ "axisPadding": 200,
552
+ "target": 0,
553
+ "maxTickRotation": "30",
554
+ "padding": 5,
555
+ "showYearsOnce": false,
556
+ "sortByRecentDate": false,
557
+ "dataKey": "State",
558
+ "axisBBox": 56.693336486816406,
559
+ "tickWidthMax": 31,
560
+ "label": "States or MMSAs"
561
+ },
562
+ "table": {
563
+ "label": "Data Table",
564
+ "expanded": true,
565
+ "limitHeight": false,
566
+ "height": "",
567
+ "caption": "",
568
+ "showDownloadUrl": false,
569
+ "showDataTableLink": false,
570
+ "showDownloadLinkBelow": false,
571
+ "indexLabel": "",
572
+ "download": true,
573
+ "showVertical": false,
574
+ "dateDisplayFormat": "",
575
+ "showMissingDataLabel": true,
576
+ "showSuppressedSymbol": true,
577
+ "show": false,
578
+ "showDownloadImgButton": true
579
+ },
580
+ "orientation": "horizontal",
581
+ "color": "pinkpurple",
582
+ "columns": {
583
+ "95%_CI": {
584
+ "label": "95%_CI",
585
+ "dataTable": false,
586
+ "tooltips": true,
587
+ "prefix": "",
588
+ "suffix": "",
589
+ "forestPlot": false,
590
+ "startingPoint": "0",
591
+ "forestPlotAlignRight": false,
592
+ "roundToPlace": 0,
593
+ "commas": false,
594
+ "showInViz": false,
595
+ "forestPlotStartingPoint": 0,
596
+ "name": "95%_CI",
597
+ "series": ""
598
+ },
599
+ "n": {
600
+ "label": "n",
601
+ "dataTable": false,
602
+ "tooltips": true,
603
+ "prefix": "",
604
+ "suffix": "",
605
+ "forestPlot": false,
606
+ "startingPoint": "0",
607
+ "forestPlotAlignRight": false,
608
+ "roundToPlace": 0,
609
+ "commas": false,
610
+ "showInViz": false,
611
+ "forestPlotStartingPoint": 0,
612
+ "name": "n",
613
+ "series": ""
614
+ }
615
+ },
616
+ "legend": {
617
+ "hide": false,
618
+ "behavior": "highlight",
619
+ "axisAlign": true,
620
+ "singleRow": true,
621
+ "colorCode": "",
622
+ "reverseLabelOrder": false,
623
+ "description": "",
624
+ "dynamicLegend": false,
625
+ "dynamicLegendDefaultText": "Show All",
626
+ "dynamicLegendItemLimit": 5,
627
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
628
+ "dynamicLegendChartMessage": "Select Options from the Legend",
629
+ "label": "Subcategory",
630
+ "lineMode": false,
631
+ "verticalSorted": true,
632
+ "highlightOnHover": false,
633
+ "hideSuppressedLabels": false,
634
+ "hideSuppressionLink": false,
635
+ "seriesHighlight": [],
636
+ "style": "circles",
637
+ "subStyle": "linear blocks",
638
+ "tickRotation": "",
639
+ "hideBorder": {
640
+ "side": false,
641
+ "topBottom": false
642
+ },
643
+ "position": "right"
644
+ },
645
+ "brush": {
646
+ "height": 25,
647
+ "active": false
648
+ },
649
+ "exclusions": {
650
+ "active": false,
651
+ "keys": []
652
+ },
653
+ "palette": "qualitative-bold",
654
+ "isPaletteReversed": false,
655
+ "twoColor": {
656
+ "palette": "monochrome-1",
657
+ "isPaletteReversed": false
658
+ },
659
+ "labels": false,
660
+ "dataFormat": {
661
+ "commas": false,
662
+ "prefix": "",
663
+ "suffix": "",
664
+ "abbreviated": false,
665
+ "bottomSuffix": "",
666
+ "bottomPrefix": "",
667
+ "bottomAbbreviated": false,
668
+ "roundTo": "0"
669
+ },
670
+ "confidenceKeys": {
671
+ "upper": "High_CI",
672
+ "lower": "Low_CI"
673
+ },
674
+ "visual": {
675
+ "border": true,
676
+ "accent": true,
677
+ "background": true,
678
+ "verticalHoverLine": false,
679
+ "horizontalHoverLine": false
680
+ },
681
+ "useLogScale": false,
682
+ "filterBehavior": "Filter Change",
683
+ "highlightedBarValues": [],
684
+ "series": [
685
+ {
686
+ "dataKey": "Percentage",
687
+ "type": "Bar",
688
+ "axis": "Left",
689
+ "tooltip": true,
690
+ "dynamicCategory": "Subcategory",
691
+ "confidenceIntervals": [
692
+ {
693
+ "low": "Low_CI",
694
+ "high": "High_CI",
695
+ "showInTooltip": true
696
+ }
697
+ ]
698
+ }
699
+ ],
700
+ "tooltips": {
701
+ "opacity": 90,
702
+ "singleSeries": true,
703
+ "dateDisplayFormat": ""
704
+ },
705
+ "forestPlot": {
706
+ "startAt": 0,
707
+ "colors": {
708
+ "line": "",
709
+ "shape": ""
710
+ },
711
+ "lineOfNoEffect": {
712
+ "show": true
713
+ },
714
+ "type": "",
715
+ "pooledResult": {
716
+ "diamondHeight": 5,
717
+ "column": ""
718
+ },
719
+ "estimateField": "",
720
+ "estimateRadius": "",
721
+ "shape": "square",
722
+ "rowHeight": 20,
723
+ "description": {
724
+ "show": true,
725
+ "text": "description",
726
+ "location": 0
727
+ },
728
+ "result": {
729
+ "show": true,
730
+ "text": "result",
731
+ "location": 100
732
+ },
733
+ "radius": {
734
+ "min": 2,
735
+ "max": 10,
736
+ "scalingColumn": ""
737
+ },
738
+ "regression": {
739
+ "lower": 0,
740
+ "upper": 0,
741
+ "estimateField": 0
742
+ },
743
+ "leftWidthOffset": 0,
744
+ "rightWidthOffset": 0,
745
+ "showZeroLine": false,
746
+ "leftLabel": "",
747
+ "rightLabel": ""
748
+ },
749
+ "area": {
750
+ "isStacked": false
751
+ },
752
+ "sankey": {
753
+ "title": {
754
+ "defaultColor": "black"
755
+ },
756
+ "iterations": 1,
757
+ "rxValue": 0.9,
758
+ "overallSize": {
759
+ "width": 900,
760
+ "height": 700
761
+ },
762
+ "margin": {
763
+ "margin_y": 25,
764
+ "margin_x": 0
765
+ },
766
+ "nodeSize": {
767
+ "nodeWidth": 26,
768
+ "nodeHeight": 40
769
+ },
770
+ "nodePadding": 55,
771
+ "nodeFontColor": "black",
772
+ "nodeColor": {
773
+ "default": "#ff8500",
774
+ "inactive": "#808080"
775
+ },
776
+ "linkColor": {
777
+ "default": "#ffc900",
778
+ "inactive": "#D3D3D3"
779
+ },
780
+ "opacity": {
781
+ "nodeOpacityDefault": 1,
782
+ "nodeOpacityInactive": 0.1,
783
+ "LinkOpacityDefault": 1,
784
+ "LinkOpacityInactive": 0.1
785
+ },
786
+ "storyNodeFontColor": "#006778",
787
+ "storyNodeText": [],
788
+ "nodeValueStyle": {
789
+ "textBefore": "(",
790
+ "textAfter": ")"
791
+ },
792
+ "data": []
793
+ },
794
+ "filters": [
795
+ {
796
+ "filterStyle": "dropdown",
797
+ "id": 1732225646634,
798
+ "showDropdown": true,
799
+ "columnName": "Subcategory_Filter",
800
+ "label": "View By Subcategory",
801
+ "order": "asc"
802
+ },
803
+ {
804
+ "filterStyle": "dropdown",
805
+ "id": 1732226127717,
806
+ "showDropdown": true,
807
+ "columnName": "Response",
808
+ "label": "Response"
809
+ }
810
+ ],
811
+ "openModal": true,
812
+ "uid": "chart1725918024864",
813
+ "visualizationType": "Bar",
814
+ "dataDescription": {
815
+ "series": false,
816
+ "horizontal": false
817
+ },
818
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'",
819
+ "version": "4.24.12",
820
+ "dynamicMarginTop": 0,
821
+ "description": "<strong>Data Source:</strong> <a >Behavioral Risk Factor Surveillance System (BRFSS)</a>",
822
+ "footnotes": "The legend quantiles in the map are based on the minimum and maximum data values for the selected search criteria. These quantiles may update with the change in search criteria."
823
+ },
824
+ "table1725918028606": {
825
+ "filters": [
826
+ {
827
+ "filterStyle": "dropdown",
828
+ "id": 1732226296241,
829
+ "showDropdown": true,
830
+ "columnName": "Subcategory_Filter",
831
+ "label": "View By Subcategory"
832
+ },
833
+ {
834
+ "filterStyle": "dropdown",
835
+ "id": 1732226298657,
836
+ "showDropdown": true,
837
+ "columnName": "Response",
838
+ "label": "Response"
839
+ }
840
+ ],
841
+ "filterBehavior": "Filter Change",
842
+ "newViz": false,
843
+ "openModal": true,
844
+ "uid": "table1725918028606",
845
+ "type": "table",
846
+ "table": {
847
+ "label": "Data Table",
848
+ "show": true,
849
+ "showDownloadUrl": false,
850
+ "showVertical": true,
851
+ "expanded": true,
852
+ "collapsible": false,
853
+ "showDownloadLinkBelow": false,
854
+ "groupBy": "State",
855
+ "pivot": {
856
+ "columnName": "Category",
857
+ "valueColumns": [
858
+ "Subcategory"
859
+ ]
860
+ }
861
+ },
862
+ "columns": {
863
+ "Category": {
864
+ "name": "Category",
865
+ "dataTable": true,
866
+ "label": "View By",
867
+ "order": 1
868
+ },
869
+ "Class": {
870
+ "name": "Class",
871
+ "dataTable": false
872
+ },
873
+ "DataSource": {
874
+ "name": "DataSource",
875
+ "dataTable": false
876
+ },
877
+ "Data_Type": {
878
+ "name": "Data_Type",
879
+ "dataTable": false
880
+ },
881
+ "Dataset": {
882
+ "name": "Dataset",
883
+ "dataTable": false
884
+ },
885
+ "Footnotes": {
886
+ "name": "Footnotes",
887
+ "dataTable": false
888
+ },
889
+ "GeoLocation_Lat": {
890
+ "name": "GeoLocation_Lat",
891
+ "dataTable": false
892
+ },
893
+ "GeoLocation_Long": {
894
+ "name": "GeoLocation_Long",
895
+ "dataTable": false
896
+ },
897
+ "High_CI": {
898
+ "name": "High_CI",
899
+ "dataTable": false
900
+ },
901
+ "Low_CI": {
902
+ "name": "Low_CI",
903
+ "dataTable": false
904
+ },
905
+ "Question": {
906
+ "name": "Question",
907
+ "dataTable": false
908
+ },
909
+ "Response": {
910
+ "name": "Response",
911
+ "dataTable": false
912
+ },
913
+ "State_Abbr": {
914
+ "name": "State_Abbr",
915
+ "dataTable": false
916
+ },
917
+ "Subcategory": {
918
+ "name": "Subcategory",
919
+ "dataTable": true
920
+ },
921
+ "Subcategory_Filter": {
922
+ "name": "Subcategory_Filter",
923
+ "dataTable": false
924
+ },
925
+ "Topic": {
926
+ "name": "Topic",
927
+ "dataTable": false
928
+ },
929
+ "createdon": {
930
+ "name": "createdon",
931
+ "dataTable": false
932
+ },
933
+ "Year": {
934
+ "name": "Year",
935
+ "dataTable": false
936
+ },
937
+ "n": {
938
+ "label": "n",
939
+ "dataTable": true,
940
+ "tooltips": false,
941
+ "prefix": "",
942
+ "suffix": "",
943
+ "forestPlot": false,
944
+ "startingPoint": "0",
945
+ "forestPlotAlignRight": false,
946
+ "roundToPlace": 0,
947
+ "commas": true,
948
+ "showInViz": false,
949
+ "forestPlotStartingPoint": 0,
950
+ "name": "n",
951
+ "order": 2
952
+ },
953
+ "Percentage": {
954
+ "label": "Percentage",
955
+ "dataTable": true,
956
+ "tooltips": false,
957
+ "prefix": "",
958
+ "suffix": "%",
959
+ "forestPlot": false,
960
+ "startingPoint": "0",
961
+ "forestPlotAlignRight": false,
962
+ "roundToPlace": "1",
963
+ "commas": false,
964
+ "showInViz": false,
965
+ "forestPlotStartingPoint": 0,
966
+ "name": "Percentage",
967
+ "order": 3
968
+ },
969
+ "95%_CI": {
970
+ "label": "95% CI",
971
+ "dataTable": true,
972
+ "tooltips": false,
973
+ "prefix": "",
974
+ "suffix": "",
975
+ "forestPlot": false,
976
+ "startingPoint": "0",
977
+ "forestPlotAlignRight": false,
978
+ "roundToPlace": 0,
979
+ "commas": false,
980
+ "showInViz": false,
981
+ "forestPlotStartingPoint": 0,
982
+ "name": "95%_CI",
983
+ "order": 4
984
+ },
985
+ "Category_Order": {
986
+ "name": "Category_Order",
987
+ "dataTable": false
988
+ },
989
+ "LocationCategory": {
990
+ "name": "LocationCategory",
991
+ "dataTable": false
992
+ },
993
+ "Subcategory_Order": {
994
+ "name": "Subcategory_Order",
995
+ "dataTable": false
996
+ }
997
+ },
998
+ "dataFormat": {},
999
+ "visualizationType": "table",
1000
+ "dataDescription": {
1001
+ "series": false,
1002
+ "horizontal": false
1003
+ },
1004
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'",
1005
+ "general": {
1006
+ "showDownloadButton": true
1007
+ }
1008
+ },
1009
+ "dashboardFilters1725972557434": {
1010
+ "filters": [],
1011
+ "filterBehavior": "Filter Change",
1012
+ "newViz": true,
1013
+ "openModal": true,
1014
+ "uid": "dashboardFilters1725972557434",
1015
+ "type": "dashboardFilters",
1016
+ "sharedFilterIndexes": [
1017
+ 4,
1018
+ 5,
1019
+ 6
1020
+ ],
1021
+ "visualizationType": "dashboardFilters",
1022
+ "autoLoad": true
1023
+ },
1024
+ "markup-include1727985995619": {
1025
+ "filters": [],
1026
+ "filterBehavior": "Filter Change",
1027
+ "openModal": false,
1028
+ "uid": "markup-include1727985995619",
1029
+ "type": "markup-include",
1030
+ "contentEditor": {
1031
+ "inlineHTML": "<h2>{{Question}}</h2><h3>{{Year}}</h3><h3>{{Class}}: {{Topic}}</h3>",
1032
+ "markupVariables": [
1033
+ {
1034
+ "columnName": "Question",
1035
+ "conditions": [],
1036
+ "name": "Question",
1037
+ "tag": "{{Question}}"
1038
+ },
1039
+ {
1040
+ "columnName": "Year",
1041
+ "conditions": [],
1042
+ "name": "Year",
1043
+ "tag": "{{Year}}"
1044
+ },
1045
+ {
1046
+ "columnName": "Class",
1047
+ "conditions": [],
1048
+ "name": "Class",
1049
+ "tag": "{{Class}}"
1050
+ },
1051
+ {
1052
+ "columnName": "Topic",
1053
+ "conditions": [],
1054
+ "name": "Topic",
1055
+ "tag": "{{Topic}}"
1056
+ }
1057
+ ],
1058
+ "showHeader": true,
1059
+ "srcUrl": "#example",
1060
+ "title": "",
1061
+ "useInlineHTML": true,
1062
+ "allowHideSection": true
1063
+ },
1064
+ "theme": "theme-blue",
1065
+ "visual": {
1066
+ "border": false,
1067
+ "accent": false,
1068
+ "background": false,
1069
+ "hideBackgroundColor": false,
1070
+ "borderColorTheme": false
1071
+ },
1072
+ "showEditorPanel": true,
1073
+ "visualizationType": "markup-include",
1074
+ "version": "4.24.12",
1075
+ "dataDescription": {
1076
+ "horizontal": false,
1077
+ "series": false
1078
+ },
1079
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic"
1080
+ },
1081
+ "markup-include1731457764699": {
1082
+ "filters": [],
1083
+ "filterBehavior": "Filter Change",
1084
+ "openModal": false,
1085
+ "uid": "markup-include1731457764699",
1086
+ "type": "markup-include",
1087
+ "contentEditor": {
1088
+ "inlineHTML": "<h4>Calculated Variables</h4><p>Calculated variables are variables that are calculated from one or more BRFSS questions. Refer to <a href='https://www.cdc.gov/brfss/annual_data/2022/pdf/2022-calculated-variables-version4-508.pdf'>Calculated Variable Data File</a> for further details.</p>",
1089
+ "markupVariables": [],
1090
+ "showHeader": true,
1091
+ "srcUrl": "#example",
1092
+ "title": "",
1093
+ "useInlineHTML": true,
1094
+ "allowHideSection": true
1095
+ },
1096
+ "theme": "theme-blue",
1097
+ "visual": {
1098
+ "border": false,
1099
+ "accent": false,
1100
+ "background": false,
1101
+ "hideBackgroundColor": false,
1102
+ "borderColorTheme": false
1103
+ },
1104
+ "showEditorPanel": true,
1105
+ "visualizationType": "markup-include",
1106
+ "dataDescription": {
1107
+ "horizontal": false,
1108
+ "series": false
1109
+ },
1110
+ "version": "4.24.12"
1111
+ },
1112
+ "markup-include1733869550808": {
1113
+ "filters": [],
1114
+ "filterBehavior": "Filter Change",
1115
+ "openModal": false,
1116
+ "uid": "markup-include1733869550808",
1117
+ "type": "markup-include",
1118
+ "contentEditor": {
1119
+ "inlineHTML": "<h4>Notes</h4><p>Use caution in interpreting cell sizes less than 50.</p><p>If you see that a question is not available for a particular year, it is because the question was dropped or changed.</p><p>Check the category of interest for that year to find similar items.</p><p>Denominator includes all respondents except those with missing, don't know, and refused answers.</p>",
1120
+ "markupVariables": [],
1121
+ "showHeader": true,
1122
+ "srcUrl": "#example",
1123
+ "title": "",
1124
+ "useInlineHTML": true
1125
+ },
1126
+ "theme": "theme-blue",
1127
+ "visual": {
1128
+ "border": false,
1129
+ "accent": false,
1130
+ "background": false,
1131
+ "hideBackgroundColor": false,
1132
+ "borderColorTheme": false
1133
+ },
1134
+ "showEditorPanel": true,
1135
+ "visualizationType": "markup-include",
1136
+ "dataDescription": {},
1137
+ "dataKey": "",
1138
+ "version": "4.24.10"
1139
+ },
1140
+ "markup-include1733869573450": {
1141
+ "filters": [],
1142
+ "filterBehavior": "Filter Change",
1143
+ "openModal": false,
1144
+ "uid": "markup-include1733869573450",
1145
+ "type": "markup-include",
1146
+ "contentEditor": {
1147
+ "inlineHTML": "<h4>Suggested Citation</h4><p>Centers for Disease Control and Prevention, National Center for Chronic Disease Prevention and Health Promotion, Division of Population Health. BRFSS Prevalence & Trends Data [online]. 2015. [accessed {{AccessedDate}}]. URL: <a href='https://www.cdc.gov/brfss/brfssprevalence/'>https://www.cdc.gov/brfss/brfssprevalence/.</a></p>",
1148
+ "markupVariables": [
1149
+ {
1150
+ "columnName": "getdate()",
1151
+ "conditions": [],
1152
+ "name": "AccessedDate",
1153
+ "tag": "{{AccessedDate}}"
1154
+ }
1155
+ ],
1156
+ "showHeader": true,
1157
+ "srcUrl": "#example",
1158
+ "title": "",
1159
+ "useInlineHTML": true
1160
+ },
1161
+ "theme": "theme-blue",
1162
+ "visual": {
1163
+ "border": false,
1164
+ "accent": false,
1165
+ "background": false,
1166
+ "hideBackgroundColor": false,
1167
+ "borderColorTheme": false
1168
+ },
1169
+ "showEditorPanel": true,
1170
+ "visualizationType": "markup-include",
1171
+ "dataDescription": {
1172
+ "horizontal": false,
1173
+ "series": false
1174
+ },
1175
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()",
1176
+ "version": "4.24.10"
1177
+ },
1178
+ "markup-include1733869622293": {
1179
+ "filters": [],
1180
+ "filterBehavior": "Filter Change",
1181
+ "openModal": false,
1182
+ "uid": "markup-include1733869622293",
1183
+ "type": "markup-include",
1184
+ "contentEditor": {
1185
+ "inlineHTML": "<h4>Measure Definitions</h4><p>% = Percent</p><p>CI = 95% Confidence Interval</p><p>n = “Sample Size”. Translates to the number of adult respondents who answered this question, or were assigned to this category based on question responses for a calculated variable, or the number of states included for a median.</p>",
1186
+ "markupVariables": [],
1187
+ "showHeader": true,
1188
+ "srcUrl": "#example",
1189
+ "title": "",
1190
+ "useInlineHTML": true
1191
+ },
1192
+ "theme": "theme-blue",
1193
+ "visual": {
1194
+ "border": false,
1195
+ "accent": false,
1196
+ "background": false,
1197
+ "hideBackgroundColor": false,
1198
+ "borderColorTheme": false
1199
+ },
1200
+ "showEditorPanel": true,
1201
+ "visualizationType": "markup-include",
1202
+ "version": "4.24.10"
1203
+ },
1204
+ "footnotes1734535863833": {
1205
+ "uid": "footnotes1734535863833",
1206
+ "type": "footnotes",
1207
+ "visualizationType": "footnotes",
1208
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic",
1209
+ "dynamicFootnotes": {
1210
+ "textColumn": "Footnotes"
1211
+ }
1212
+ },
1213
+ "footnotes1734536357083": {
1214
+ "uid": "footnotes1734536357083",
1215
+ "type": "footnotes",
1216
+ "visualizationType": "footnotes",
1217
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22",
1218
+ "dynamicFootnotes": {
1219
+ "textColumn": "FootnoteText",
1220
+ "orderColumn": "FootnoteText"
1221
+ }
1222
+ },
1223
+ "footnotes1734536670964": {
1224
+ "uid": "footnotes1734536670964",
1225
+ "type": "footnotes",
1226
+ "visualizationType": "footnotes",
1227
+ "dataKey": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22",
1228
+ "dynamicFootnotes": {
1229
+ "symbolColumn": "FootnoteSymbol",
1230
+ "textColumn": "FootnoteText",
1231
+ "orderColumn": "FootnoteText"
1232
+ }
1233
+ }
1234
+ },
1235
+ "table": {
1236
+ "label": "Data Table",
1237
+ "show": false,
1238
+ "showDownloadUrl": false,
1239
+ "showVertical": true
1240
+ },
1241
+ "datasets": {
1242
+ "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic": {
1243
+ "dataFileSize": 1272430,
1244
+ "dataFileName": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000",
1245
+ "dataFileSourceType": "url",
1246
+ "dataFileFormat": "JSON",
1247
+ "preview": false,
1248
+ "dataUrl": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000"
1249
+ },
1250
+ "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()": {
1251
+ "dataFileSize": 92002,
1252
+ "dataFileName": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=getdate()",
1253
+ "dataFileSourceType": "url",
1254
+ "dataFileFormat": "JSON",
1255
+ "preview": false,
1256
+ "dataUrl": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=getdate()"
1257
+ },
1258
+ "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'": {
1259
+ "dataFileSize": 1286146,
1260
+ "dataFileName": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'",
1261
+ "dataFileSourceType": "url",
1262
+ "dataFileFormat": "JSON",
1263
+ "preview": false,
1264
+ "dataUrl": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'"
1265
+ },
1266
+ "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'": {
1267
+ "dataFileSize": 1272966,
1268
+ "dataFileName": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'",
1269
+ "dataFileSourceType": "url",
1270
+ "dataFileFormat": "JSON",
1271
+ "preview": false,
1272
+ "dataUrl": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'"
1273
+ },
1274
+ "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22": {
1275
+ "dataFileSize": 1026590,
1276
+ "dataFileName": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22",
1277
+ "dataFileSourceType": "url",
1278
+ "dataFileFormat": "JSON",
1279
+ "preview": false,
1280
+ "dataUrl": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22"
1281
+ },
1282
+ "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22": {
1283
+ "dataFileSize": 1023317,
1284
+ "dataFileName": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22",
1285
+ "dataFileSourceType": "url",
1286
+ "dataFileFormat": "JSON",
1287
+ "preview": true,
1288
+ "dataUrl": "https://nccd-cove-public-api.apps.ecpaas-dev.cdc.gov/od-public?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22"
1289
+ }
1290
+ },
1291
+ "type": "dashboard",
1292
+ "version": "4.25.1",
1293
+ "uuid": 1733869542610
1294
+ }