@cdc/data-bite 4.25.7 → 4.25.10
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.
- package/dist/cdcdatabite.js +8141 -7394
- package/package.json +15 -5
- package/src/CdcDataBite.tsx +52 -7
- package/src/_stories/DataBite.Editor.stories.tsx +862 -0
- package/src/_stories/DataBite.stories.tsx +59 -35
- package/src/components/EditorPanel.jsx +23 -3
- package/src/data/initial-state.js +3 -1
- package/src/index.jsx +5 -2
- package/src/test/CdcDataBite.test.jsx +8 -3
- package/src/types/Config.ts +4 -2
- package/tests/fixtures/example-data.json +833 -0
- package/tests/fixtures/test-config.json +26 -0
- package/vite.config.js +1 -1
- package/vitest.config.ts +16 -0
- package/src/coreStyles_databite.scss +0 -3
|
@@ -0,0 +1,833 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"Insured Rate": "43",
|
|
4
|
+
"Coverage Status": "Insured",
|
|
5
|
+
"state": "Alabama",
|
|
6
|
+
"Year (Good filter option)": "2010",
|
|
7
|
+
"link": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"Insured Rate": "0",
|
|
11
|
+
"Coverage Status": "Uninsured",
|
|
12
|
+
"state": "Alaska",
|
|
13
|
+
"Year (Good filter option)": "2010",
|
|
14
|
+
"link": ""
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"Insured Rate": "72.7",
|
|
18
|
+
"Coverage Status": "Insured",
|
|
19
|
+
"state": "Arizona",
|
|
20
|
+
"Year (Good filter option)": "2010",
|
|
21
|
+
"link": "#lorem"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"Insured Rate": "78.7",
|
|
25
|
+
"Coverage Status": "Insured",
|
|
26
|
+
"state": "Arkansas",
|
|
27
|
+
"Year (Good filter option)": "2010",
|
|
28
|
+
"link": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"Insured Rate": "37.2",
|
|
32
|
+
"Coverage Status": "Insured",
|
|
33
|
+
"state": "California",
|
|
34
|
+
"Year (Good filter option)": "2010",
|
|
35
|
+
"link": "https://search.cdc.gov/search/?query=California&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"Insured Rate": "50.6",
|
|
39
|
+
"Coverage Status": "Insured",
|
|
40
|
+
"state": "Colorado",
|
|
41
|
+
"Year (Good filter option)": "2010",
|
|
42
|
+
"link": ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"Insured Rate": "83.2",
|
|
46
|
+
"Coverage Status": "Insured",
|
|
47
|
+
"state": "Connecticut",
|
|
48
|
+
"Year (Good filter option)": "2010",
|
|
49
|
+
"link": ""
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"Insured Rate": "90",
|
|
53
|
+
"Coverage Status": "Insured",
|
|
54
|
+
"state": "Delaware",
|
|
55
|
+
"Year (Good filter option)": "2010",
|
|
56
|
+
"link": ""
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"Insured Rate": "77",
|
|
60
|
+
"Coverage Status": "Insured",
|
|
61
|
+
"state": "District of Columbia",
|
|
62
|
+
"Year (Good filter option)": "2010",
|
|
63
|
+
"link": "https://search.cdc.gov/search/index.html?query=Washington+D.C.&sitelimit=&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"Insured Rate": "83",
|
|
67
|
+
"Coverage Status": "Insured",
|
|
68
|
+
"state": "Florida",
|
|
69
|
+
"Year (Good filter option)": "2010",
|
|
70
|
+
"link": ""
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"Insured Rate": "83.7",
|
|
74
|
+
"Coverage Status": "Uninsured",
|
|
75
|
+
"state": "Georgia",
|
|
76
|
+
"Year (Good filter option)": "2010",
|
|
77
|
+
"link": ""
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"Insured Rate": "N/A",
|
|
81
|
+
"Coverage Status": "Insured",
|
|
82
|
+
"state": "Hawaii",
|
|
83
|
+
"Year (Good filter option)": "2010",
|
|
84
|
+
"link": "https://cdc.gov/"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"Insured Rate": "80.96",
|
|
88
|
+
"Coverage Status": "Insured",
|
|
89
|
+
"state": "Idaho",
|
|
90
|
+
"Year (Good filter option)": "2010",
|
|
91
|
+
"link": ""
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"Insured Rate": "86.9",
|
|
95
|
+
"Coverage Status": "Insured",
|
|
96
|
+
"state": "Illinois",
|
|
97
|
+
"Year (Good filter option)": "2010",
|
|
98
|
+
"link": ""
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"Insured Rate": "85",
|
|
102
|
+
"Coverage Status": "Insured",
|
|
103
|
+
"state": "Indiana",
|
|
104
|
+
"Year (Good filter option)": "2010",
|
|
105
|
+
"link": ""
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"Insured Rate": "89.6",
|
|
109
|
+
"Coverage Status": "Insured",
|
|
110
|
+
"state": "Iowa",
|
|
111
|
+
"Year (Good filter option)": "2010",
|
|
112
|
+
"link": ""
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"Insured Rate": "87.5",
|
|
116
|
+
"Coverage Status": "Insured",
|
|
117
|
+
"state": "Kansas",
|
|
118
|
+
"Year (Good filter option)": "2010",
|
|
119
|
+
"link": ""
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"Insured Rate": "83.1",
|
|
123
|
+
"Coverage Status": "Insured",
|
|
124
|
+
"state": "Kentucky",
|
|
125
|
+
"Year (Good filter option)": "2010",
|
|
126
|
+
"link": ""
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"Insured Rate": "79.2",
|
|
130
|
+
"Coverage Status": "Insured",
|
|
131
|
+
"state": "Louisiana",
|
|
132
|
+
"Year (Good filter option)": "2010",
|
|
133
|
+
"link": ""
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"Insured Rate": "88",
|
|
137
|
+
"Coverage Status": "Insured",
|
|
138
|
+
"state": "Maine",
|
|
139
|
+
"Year (Good filter option)": "2010",
|
|
140
|
+
"link": ""
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"Insured Rate": "9.1",
|
|
144
|
+
"Coverage Status": "Insured",
|
|
145
|
+
"state": "Maryland",
|
|
146
|
+
"Year (Good filter option)": "2010",
|
|
147
|
+
"link": ""
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"Insured Rate": "95.7",
|
|
151
|
+
"Coverage Status": "Insured",
|
|
152
|
+
"state": "Massachusetts",
|
|
153
|
+
"Year (Good filter option)": "2010",
|
|
154
|
+
"link": ""
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"Insured Rate": "86.1",
|
|
158
|
+
"Coverage Status": "Insured",
|
|
159
|
+
"state": "Michigan",
|
|
160
|
+
"Year (Good filter option)": "2010",
|
|
161
|
+
"link": ""
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"Insured Rate": "21",
|
|
165
|
+
"Coverage Status": "Insured",
|
|
166
|
+
"state": "Minnesota",
|
|
167
|
+
"Year (Good filter option)": "2010",
|
|
168
|
+
"link": ""
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"Insured Rate": "78.46",
|
|
172
|
+
"Coverage Status": "Insured",
|
|
173
|
+
"state": "Mississippi",
|
|
174
|
+
"Year (Good filter option)": "2010",
|
|
175
|
+
"link": ""
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"Insured Rate": "85",
|
|
179
|
+
"Coverage Status": "Insured",
|
|
180
|
+
"state": "Missouri",
|
|
181
|
+
"Year (Good filter option)": "2010",
|
|
182
|
+
"link": ""
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"Insured Rate": "81.599",
|
|
186
|
+
"Coverage Status": "Uninsured",
|
|
187
|
+
"state": "Montana",
|
|
188
|
+
"Year (Good filter option)": "2010",
|
|
189
|
+
"link": ""
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"Insured Rate": "86.3",
|
|
193
|
+
"Coverage Status": "Insured",
|
|
194
|
+
"state": "Nebraska",
|
|
195
|
+
"Year (Good filter option)": "2010",
|
|
196
|
+
"link": ""
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"Insured Rate": "80.3",
|
|
200
|
+
"Coverage Status": "Insured",
|
|
201
|
+
"state": "Nevada",
|
|
202
|
+
"Year (Good filter option)": "2010",
|
|
203
|
+
"link": ""
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"Insured Rate": "88.7",
|
|
207
|
+
"Coverage Status": "Insured",
|
|
208
|
+
"state": "New Hampshire",
|
|
209
|
+
"Year (Good filter option)": "2010",
|
|
210
|
+
"link": ""
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"Insured Rate": "88.5",
|
|
214
|
+
"Coverage Status": "Insured",
|
|
215
|
+
"state": "New Jersey",
|
|
216
|
+
"Year (Good filter option)": "2010",
|
|
217
|
+
"link": ""
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"Insured Rate": "80.96",
|
|
221
|
+
"Coverage Status": "Insured",
|
|
222
|
+
"state": "New Mexico",
|
|
223
|
+
"Year (Good filter option)": "2010",
|
|
224
|
+
"link": ""
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"Insured Rate": "88.6",
|
|
228
|
+
"Coverage Status": "Insured",
|
|
229
|
+
"state": "New York",
|
|
230
|
+
"Year (Good filter option)": "2010",
|
|
231
|
+
"link": ""
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"Insured Rate": "81",
|
|
235
|
+
"Coverage Status": "Uninsured",
|
|
236
|
+
"state": "North Carolina",
|
|
237
|
+
"Year (Good filter option)": "2010",
|
|
238
|
+
"link": ""
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"Insured Rate": "88.9",
|
|
242
|
+
"Coverage Status": "Insured",
|
|
243
|
+
"state": "North Dakota",
|
|
244
|
+
"Year (Good filter option)": "2010",
|
|
245
|
+
"link": ""
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"Insured Rate": "57.2",
|
|
249
|
+
"Coverage Status": "Insured",
|
|
250
|
+
"state": "Ohio",
|
|
251
|
+
"Year (Good filter option)": "2010",
|
|
252
|
+
"link": ""
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"Insured Rate": "80.8",
|
|
256
|
+
"Coverage Status": "Insured",
|
|
257
|
+
"state": "Oklahoma",
|
|
258
|
+
"Year (Good filter option)": "2010",
|
|
259
|
+
"link": ""
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"Insured Rate": "83.5",
|
|
263
|
+
"Coverage Status": "Medicaid",
|
|
264
|
+
"state": "Oregon",
|
|
265
|
+
"Year (Good filter option)": "2010",
|
|
266
|
+
"link": ""
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"Insured Rate": "88.5",
|
|
270
|
+
"Coverage Status": "Insured",
|
|
271
|
+
"state": "Pennsylvania",
|
|
272
|
+
"Year (Good filter option)": "2010",
|
|
273
|
+
"link": ""
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"Insured Rate": "87.7",
|
|
277
|
+
"Coverage Status": "Medicaid",
|
|
278
|
+
"state": "Rhode Island",
|
|
279
|
+
"Year (Good filter option)": "2010",
|
|
280
|
+
"link": ""
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"Insured Rate": "81.2",
|
|
284
|
+
"Coverage Status": "Insured",
|
|
285
|
+
"state": "South Carolina",
|
|
286
|
+
"Year (Good filter option)": "2010",
|
|
287
|
+
"link": ""
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"Insured Rate": "89.4",
|
|
291
|
+
"Coverage Status": "Insured",
|
|
292
|
+
"state": "South Dakota",
|
|
293
|
+
"Year (Good filter option)": "2010",
|
|
294
|
+
"link": ""
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"Insured Rate": "83.5",
|
|
298
|
+
"Coverage Status": "Insured",
|
|
299
|
+
"state": "Tennessee",
|
|
300
|
+
"Year (Good filter option)": "2010",
|
|
301
|
+
"link": ""
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"Insured Rate": "26.96",
|
|
305
|
+
"Coverage Status": "Insured",
|
|
306
|
+
"state": "Texas",
|
|
307
|
+
"Year (Good filter option)": "2010",
|
|
308
|
+
"link": "https://search.cdc.gov/search/?query=Texas&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"Insured Rate": "44.1",
|
|
312
|
+
"Coverage Status": "Insured",
|
|
313
|
+
"state": "Utah",
|
|
314
|
+
"Year (Good filter option)": "2010",
|
|
315
|
+
"link": ""
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"Insured Rate": "45.2",
|
|
319
|
+
"Coverage Status": "Medicaid",
|
|
320
|
+
"state": "Vermont",
|
|
321
|
+
"Year (Good filter option)": "2010",
|
|
322
|
+
"link": ""
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"Insured Rate": "55",
|
|
326
|
+
"Coverage Status": "Insured",
|
|
327
|
+
"state": "Virginia",
|
|
328
|
+
"Year (Good filter option)": "2010",
|
|
329
|
+
"link": ""
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"Insured Rate": "55",
|
|
333
|
+
"Coverage Status": "Insured",
|
|
334
|
+
"state": "Washington",
|
|
335
|
+
"Year (Good filter option)": "2010",
|
|
336
|
+
"link": ""
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"Insured Rate": "82.5",
|
|
340
|
+
"Coverage Status": "Insured",
|
|
341
|
+
"state": "West Virginia",
|
|
342
|
+
"Year (Good filter option)": "2010",
|
|
343
|
+
"link": ""
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"Insured Rate": "26",
|
|
347
|
+
"Coverage Status": "Insured",
|
|
348
|
+
"state": "Wisconsin",
|
|
349
|
+
"Year (Good filter option)": "2010",
|
|
350
|
+
"link": ""
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"Insured Rate": "59.3",
|
|
354
|
+
"Coverage Status": "Insured",
|
|
355
|
+
"state": "Los Angeles",
|
|
356
|
+
"Year (Good filter option)": "2010",
|
|
357
|
+
"link": "https://cdc.gov/"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"Insured Rate": "63",
|
|
361
|
+
"Coverage Status": "Insured",
|
|
362
|
+
"state": "Dallas",
|
|
363
|
+
"Year (Good filter option)": "2010",
|
|
364
|
+
"link": ""
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"Insured Rate": "83.5",
|
|
368
|
+
"Coverage Status": "Insured",
|
|
369
|
+
"state": "Wyoming",
|
|
370
|
+
"Year (Good filter option)": "2010",
|
|
371
|
+
"link": ""
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"Insured Rate": "18",
|
|
375
|
+
"Coverage Status": "Insured",
|
|
376
|
+
"state": "Virgin Islands",
|
|
377
|
+
"Year (Good filter option)": "2010",
|
|
378
|
+
"link": ""
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"Insured Rate": "43",
|
|
382
|
+
"Coverage Status": "Insured",
|
|
383
|
+
"state": "PR",
|
|
384
|
+
"Year (Good filter option)": "2010",
|
|
385
|
+
"link": "https://cdc.gov/"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"Insured Rate": "43",
|
|
389
|
+
"Coverage Status": "Insured",
|
|
390
|
+
"state": "Alabama",
|
|
391
|
+
"Year (Good filter option)": "2015",
|
|
392
|
+
"link": ""
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"Insured Rate": "72.7",
|
|
396
|
+
"Coverage Status": "Uninsured",
|
|
397
|
+
"state": "Alaska",
|
|
398
|
+
"Year (Good filter option)": "2015",
|
|
399
|
+
"link": ""
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"Insured Rate": "0",
|
|
403
|
+
"Coverage Status": "Insured",
|
|
404
|
+
"state": "Arizona",
|
|
405
|
+
"Year (Good filter option)": "2015",
|
|
406
|
+
"link": "https://search.cdc.gov/search/?query=Arizona&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"Insured Rate": "67",
|
|
410
|
+
"Coverage Status": "Test Category",
|
|
411
|
+
"state": "Arkansas",
|
|
412
|
+
"Year (Good filter option)": "2015",
|
|
413
|
+
"link": ""
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"Insured Rate": "29",
|
|
417
|
+
"Coverage Status": "Insured",
|
|
418
|
+
"state": "California",
|
|
419
|
+
"Year (Good filter option)": "2015",
|
|
420
|
+
"link": "https://search.cdc.gov/search/?query=California&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"Insured Rate": "50.6",
|
|
424
|
+
"Coverage Status": "Insured",
|
|
425
|
+
"state": "Colorado",
|
|
426
|
+
"Year (Good filter option)": "2015",
|
|
427
|
+
"link": ""
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"Insured Rate": "90",
|
|
431
|
+
"Coverage Status": "Insured",
|
|
432
|
+
"state": "Connecticut",
|
|
433
|
+
"Year (Good filter option)": "2015",
|
|
434
|
+
"link": ""
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"Insured Rate": "83.2",
|
|
438
|
+
"Coverage Status": "Insured",
|
|
439
|
+
"state": "Delaware",
|
|
440
|
+
"Year (Good filter option)": "2015",
|
|
441
|
+
"link": ""
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"Insured Rate": "77",
|
|
445
|
+
"Coverage Status": "Insured",
|
|
446
|
+
"state": "District of Columbia",
|
|
447
|
+
"Year (Good filter option)": "2015",
|
|
448
|
+
"link": "https://search.cdc.gov/search/index.html?query=Washington+D.C.&sitelimit=&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"Insured Rate": "83.7",
|
|
452
|
+
"Coverage Status": "Insured",
|
|
453
|
+
"state": "Florida",
|
|
454
|
+
"Year (Good filter option)": "2015",
|
|
455
|
+
"link": ""
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"Insured Rate": "83",
|
|
459
|
+
"Coverage Status": "Uninsured",
|
|
460
|
+
"state": "Georgia",
|
|
461
|
+
"Year (Good filter option)": "2015",
|
|
462
|
+
"link": ""
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"Insured Rate": "15",
|
|
466
|
+
"Coverage Status": "Insured",
|
|
467
|
+
"state": "Hawaii",
|
|
468
|
+
"Year (Good filter option)": "2015",
|
|
469
|
+
"link": "https://cdc.gov/"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"Insured Rate": "80.96",
|
|
473
|
+
"Coverage Status": "Insured",
|
|
474
|
+
"state": "Idaho",
|
|
475
|
+
"Year (Good filter option)": "2015",
|
|
476
|
+
"link": ""
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"Insured Rate": "86.9",
|
|
480
|
+
"Coverage Status": "Insured",
|
|
481
|
+
"state": "Illinois",
|
|
482
|
+
"Year (Good filter option)": "2015",
|
|
483
|
+
"link": ""
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"Insured Rate": "85",
|
|
487
|
+
"Coverage Status": "Insured",
|
|
488
|
+
"state": "Indiana",
|
|
489
|
+
"Year (Good filter option)": "2015",
|
|
490
|
+
"link": ""
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"Insured Rate": "89.6",
|
|
494
|
+
"Coverage Status": "Insured",
|
|
495
|
+
"state": "Iowa",
|
|
496
|
+
"Year (Good filter option)": "2015",
|
|
497
|
+
"link": ""
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"Insured Rate": "87.5",
|
|
501
|
+
"Coverage Status": "Insured",
|
|
502
|
+
"state": "Kansas",
|
|
503
|
+
"Year (Good filter option)": "2015",
|
|
504
|
+
"link": ""
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"Insured Rate": "83.1",
|
|
508
|
+
"Coverage Status": "Insured",
|
|
509
|
+
"state": "Kentucky",
|
|
510
|
+
"Year (Good filter option)": "2015",
|
|
511
|
+
"link": ""
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"Insured Rate": "79.2",
|
|
515
|
+
"Coverage Status": "Insured",
|
|
516
|
+
"state": "Louisiana",
|
|
517
|
+
"Year (Good filter option)": "2015",
|
|
518
|
+
"link": ""
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"Insured Rate": "88",
|
|
522
|
+
"Coverage Status": "Insured",
|
|
523
|
+
"state": "Maine",
|
|
524
|
+
"Year (Good filter option)": "2015",
|
|
525
|
+
"link": ""
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"Insured Rate": "9.1",
|
|
529
|
+
"Coverage Status": "Insured",
|
|
530
|
+
"state": "Maryland",
|
|
531
|
+
"Year (Good filter option)": "2015",
|
|
532
|
+
"link": ""
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"Insured Rate": "95.7",
|
|
536
|
+
"Coverage Status": "Insured",
|
|
537
|
+
"state": "Massachusetts",
|
|
538
|
+
"Year (Good filter option)": "2015",
|
|
539
|
+
"link": ""
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"Insured Rate": "86.1",
|
|
543
|
+
"Coverage Status": "Insured",
|
|
544
|
+
"state": "Michigan",
|
|
545
|
+
"Year (Good filter option)": "2015",
|
|
546
|
+
"link": ""
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"Insured Rate": "21",
|
|
550
|
+
"Coverage Status": "Insured",
|
|
551
|
+
"state": "Minnesota",
|
|
552
|
+
"Year (Good filter option)": "2015",
|
|
553
|
+
"link": ""
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"Insured Rate": "78.46",
|
|
557
|
+
"Coverage Status": "Insured",
|
|
558
|
+
"state": "Mississippi",
|
|
559
|
+
"Year (Good filter option)": "2015",
|
|
560
|
+
"link": ""
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"Insured Rate": "85",
|
|
564
|
+
"Coverage Status": "Insured",
|
|
565
|
+
"state": "Missouri",
|
|
566
|
+
"Year (Good filter option)": "2015",
|
|
567
|
+
"link": ""
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"Insured Rate": "81.599",
|
|
571
|
+
"Coverage Status": "Uninsured",
|
|
572
|
+
"state": "Montana",
|
|
573
|
+
"Year (Good filter option)": "2015",
|
|
574
|
+
"link": ""
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"Insured Rate": "86.3",
|
|
578
|
+
"Coverage Status": "Insured",
|
|
579
|
+
"state": "Nebraska",
|
|
580
|
+
"Year (Good filter option)": "2015",
|
|
581
|
+
"link": ""
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"Insured Rate": "80.3",
|
|
585
|
+
"Coverage Status": "Insured",
|
|
586
|
+
"state": "Nevada",
|
|
587
|
+
"Year (Good filter option)": "2015",
|
|
588
|
+
"link": ""
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"Insured Rate": "88.7",
|
|
592
|
+
"Coverage Status": "Insured",
|
|
593
|
+
"state": "New Hampshire",
|
|
594
|
+
"Year (Good filter option)": "2015",
|
|
595
|
+
"link": ""
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"Insured Rate": "88.5",
|
|
599
|
+
"Coverage Status": "Insured",
|
|
600
|
+
"state": "New Jersey",
|
|
601
|
+
"Year (Good filter option)": "2015",
|
|
602
|
+
"link": ""
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"Insured Rate": "80.96",
|
|
606
|
+
"Coverage Status": "Insured",
|
|
607
|
+
"state": "New Mexico",
|
|
608
|
+
"Year (Good filter option)": "2015",
|
|
609
|
+
"link": ""
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"Insured Rate": "88.6",
|
|
613
|
+
"Coverage Status": "Insured",
|
|
614
|
+
"state": "New York",
|
|
615
|
+
"Year (Good filter option)": "2015",
|
|
616
|
+
"link": ""
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"Insured Rate": "81",
|
|
620
|
+
"Coverage Status": "Uninsured",
|
|
621
|
+
"state": "North Carolina",
|
|
622
|
+
"Year (Good filter option)": "2015",
|
|
623
|
+
"link": ""
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"Insured Rate": "88.9",
|
|
627
|
+
"Coverage Status": "Insured",
|
|
628
|
+
"state": "North Dakota",
|
|
629
|
+
"Year (Good filter option)": "2015",
|
|
630
|
+
"link": ""
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"Insured Rate": "57.2",
|
|
634
|
+
"Coverage Status": "Insured",
|
|
635
|
+
"state": "Ohio",
|
|
636
|
+
"Year (Good filter option)": "2015",
|
|
637
|
+
"link": ""
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"Insured Rate": "80.8",
|
|
641
|
+
"Coverage Status": "Insured",
|
|
642
|
+
"state": "Oklahoma",
|
|
643
|
+
"Year (Good filter option)": "2015",
|
|
644
|
+
"link": ""
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"Insured Rate": "83.5",
|
|
648
|
+
"Coverage Status": "Medicaid",
|
|
649
|
+
"state": "Oregon",
|
|
650
|
+
"Year (Good filter option)": "2015",
|
|
651
|
+
"link": ""
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"Insured Rate": "88.5",
|
|
655
|
+
"Coverage Status": "Insured",
|
|
656
|
+
"state": "Pennsylvania",
|
|
657
|
+
"Year (Good filter option)": "2015",
|
|
658
|
+
"link": ""
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"Insured Rate": "87.7",
|
|
662
|
+
"Coverage Status": "Medicaid",
|
|
663
|
+
"state": "Rhode Island",
|
|
664
|
+
"Year (Good filter option)": "2015",
|
|
665
|
+
"link": ""
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"Insured Rate": "81.2",
|
|
669
|
+
"Coverage Status": "Insured",
|
|
670
|
+
"state": "South Carolina",
|
|
671
|
+
"Year (Good filter option)": "2015",
|
|
672
|
+
"link": ""
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"Insured Rate": "89.4",
|
|
676
|
+
"Coverage Status": "Insured",
|
|
677
|
+
"state": "South Dakota",
|
|
678
|
+
"Year (Good filter option)": "2015",
|
|
679
|
+
"link": ""
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"Insured Rate": "83.5",
|
|
683
|
+
"Coverage Status": "Insured",
|
|
684
|
+
"state": "Tennessee",
|
|
685
|
+
"Year (Good filter option)": "2015",
|
|
686
|
+
"link": ""
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"Insured Rate": "26.96",
|
|
690
|
+
"Coverage Status": "Insured",
|
|
691
|
+
"state": "Texas",
|
|
692
|
+
"Year (Good filter option)": "2015",
|
|
693
|
+
"link": "https://search.cdc.gov/search/?query=Texas&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"Insured Rate": "44.1",
|
|
697
|
+
"Coverage Status": "Insured",
|
|
698
|
+
"state": "Utah",
|
|
699
|
+
"Year (Good filter option)": "2015",
|
|
700
|
+
"link": ""
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"Insured Rate": "45.2",
|
|
704
|
+
"Coverage Status": "Medicaid",
|
|
705
|
+
"state": "Vermont",
|
|
706
|
+
"Year (Good filter option)": "2015",
|
|
707
|
+
"link": ""
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"Insured Rate": "27.8",
|
|
711
|
+
"Coverage Status": "Insured",
|
|
712
|
+
"state": "Virginia",
|
|
713
|
+
"Year (Good filter option)": "2015",
|
|
714
|
+
"link": ""
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"Insured Rate": "55",
|
|
718
|
+
"Coverage Status": "Insured",
|
|
719
|
+
"state": "Washington",
|
|
720
|
+
"Year (Good filter option)": "2015",
|
|
721
|
+
"link": ""
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"Insured Rate": "82.5",
|
|
725
|
+
"Coverage Status": "Insured",
|
|
726
|
+
"state": "West Virginia",
|
|
727
|
+
"Year (Good filter option)": "2015",
|
|
728
|
+
"link": ""
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"Insured Rate": "89.3",
|
|
732
|
+
"Coverage Status": "Insured",
|
|
733
|
+
"state": "Wisconsin",
|
|
734
|
+
"Year (Good filter option)": "2015",
|
|
735
|
+
"link": ""
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"Insured Rate": "59.3",
|
|
739
|
+
"Coverage Status": "Insured",
|
|
740
|
+
"state": "Los Angeles",
|
|
741
|
+
"Year (Good filter option)": "2015",
|
|
742
|
+
"link": ""
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"Insured Rate": "89.3",
|
|
746
|
+
"Coverage Status": "Insured",
|
|
747
|
+
"state": "Dallas",
|
|
748
|
+
"Year (Good filter option)": "2015",
|
|
749
|
+
"link": ""
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"Insured Rate": "83.5",
|
|
753
|
+
"Coverage Status": "Insured",
|
|
754
|
+
"state": "Wyoming",
|
|
755
|
+
"Year (Good filter option)": "2015",
|
|
756
|
+
"link": ""
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"Insured Rate": "18",
|
|
760
|
+
"Coverage Status": "Insured",
|
|
761
|
+
"state": "Virgin Islands",
|
|
762
|
+
"Year (Good filter option)": "2015",
|
|
763
|
+
"link": ""
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"Insured Rate": "33.5",
|
|
767
|
+
"Coverage Status": "Insured",
|
|
768
|
+
"state": "PR",
|
|
769
|
+
"Year (Good filter option)": "2015",
|
|
770
|
+
"link": "https://cdc.gov/"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"Region Name": "Region 1",
|
|
774
|
+
"States in Region": "Maine, New Hampshire, Vermont, Massachusetts, Connecticut, Rhode Island",
|
|
775
|
+
"Insured Rate": "10",
|
|
776
|
+
"Coverage Status": "Insured"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"Region Name": "Region 2",
|
|
780
|
+
"States in Region": "New York, New York City, New Jersey",
|
|
781
|
+
"Insured Rate": "50",
|
|
782
|
+
"Coverage Status": "Insured"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"Region Name": "Region 3",
|
|
786
|
+
"States in Region": "Pennsylvania, Delaware, Maryland, Virginia, West Virginia",
|
|
787
|
+
"Insured Rate": "13",
|
|
788
|
+
"Coverage Status": "Insured"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"Region Name": "Region 4",
|
|
792
|
+
"States in Region": "Tennessee, Kentucky, North Carolina, South Carolina, Georgia, Alabama, Mississippi, Florida",
|
|
793
|
+
"Insured Rate": "20",
|
|
794
|
+
"Coverage Status": "Uninsured"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"Region Name": "Region 5",
|
|
798
|
+
"States in Region": "Illinois, Indiana, Ohio, Michigan, Wisconsin, Minnesota",
|
|
799
|
+
"Insured Rate": "99",
|
|
800
|
+
"Coverage Status": "Insured",
|
|
801
|
+
"link": "https://cdc.gov/"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"Region Name": "Region 6",
|
|
805
|
+
"States in Region": "Texas, New Mexico, Oklahoma, Arkansas, Louisiana",
|
|
806
|
+
"Insured Rate": "75",
|
|
807
|
+
"Coverage Status": "Uninsured"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"Region Name": "Region 7",
|
|
811
|
+
"States in Region": "Nebraska, Kansas, Missouri, Iowa",
|
|
812
|
+
"Insured Rate": "60",
|
|
813
|
+
"Coverage Status": "Insured"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"Region Name": "Region 8",
|
|
817
|
+
"States in Region": "Montana, Wyoming, Utah, Colorado, South Dakota, North Dakota",
|
|
818
|
+
"Insured Rate": "16",
|
|
819
|
+
"Coverage Status": "Medicaid"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"Region Name": "Region 9",
|
|
823
|
+
"States in Region": "Nevada, California, Arizona, Hawaii",
|
|
824
|
+
"Insured Rate": "88",
|
|
825
|
+
"Coverage Status": "Insured"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"Region Name": "Region 10",
|
|
829
|
+
"States in Region": "Alaska, Washington, Oregon",
|
|
830
|
+
"Insured Rate": "30",
|
|
831
|
+
"Coverage Status": "Medicaid"
|
|
832
|
+
}
|
|
833
|
+
]
|