@cdc/chart 4.23.10 → 4.24.1
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/cdcchart.js +34606 -32218
- package/examples/feature/bar/additional-column-tooltip.json +446 -0
- package/examples/feature/bar/example-bar-chart.json +1 -46
- package/examples/feature/bar/lollipop.json +156 -0
- package/examples/feature/bar/tall-data.json +98 -0
- package/examples/feature/combo/planet-combo-example-config.json +99 -9
- package/examples/feature/dev-4261.json +399 -0
- package/examples/feature/forest-plot/forest-plot.json +63 -19
- package/examples/feature/forest-plot/{broken.json → linear.json} +77 -23
- package/examples/feature/forest-plot/log.json +26 -0
- package/examples/feature/forest-plot/logarithmic.json +271 -0
- package/examples/feature/line/line-chart-preliminary.json +346 -0
- package/examples/feature/line/line-points.json +340 -0
- package/examples/feature/regions/index.json +462 -0
- package/examples/feature/scatterplot/scatterplot.json +272 -33
- package/examples/gallery/bar-chart-vertical/combo-line-chart.json +181 -48
- package/examples/private/chart-t.json +3740 -0
- package/examples/private/combo.json +369 -0
- package/examples/private/epi-data.csv +13 -0
- package/examples/private/epi-data.json +62 -0
- package/examples/private/epi.json +403 -0
- package/examples/private/occupancy.json +109283 -0
- package/examples/private/prod-line-config.json +401 -0
- package/examples/private/region-data.json +822 -0
- package/examples/private/region-testing.json +312 -0
- package/examples/private/scaling.json +45325 -0
- package/examples/private/testing-data.json +1739 -0
- package/examples/private/testing.json +816 -0
- package/examples/sparkline-multilple.json +846 -0
- package/index.html +12 -8
- package/package.json +3 -3
- package/src/CdcChart.tsx +42 -211
- package/src/ConfigContext.tsx +6 -0
- package/src/_stories/Chart.stories.tsx +188 -0
- package/src/_stories/Chart.tooltip.stories.tsx +305 -0
- package/src/_stories/ChartBrush.stories.tsx +19 -0
- package/src/_stories/ChartEditor.stories.tsx +22 -0
- package/src/_stories/ChartLine.preliminary.tsx +19 -0
- package/src/_stories/ChartSuppress.stories.tsx +19 -0
- package/src/_stories/_mock/brush_mock.json +393 -0
- package/src/_stories/_mock/pie_config.json +191 -0
- package/src/_stories/_mock/pie_data.json +218 -0
- package/src/_stories/_mock/preliminary_mock.json +346 -0
- package/src/_stories/_mock/suppress_mock.json +911 -0
- package/src/components/{AreaChart.Stacked.jsx → AreaChart/components/AreaChart.Stacked.jsx} +6 -7
- package/src/components/{AreaChart.jsx → AreaChart/components/AreaChart.jsx} +7 -36
- package/src/components/AreaChart/index.tsx +4 -0
- package/src/components/{BarChart.Horizontal.jsx → BarChart/components/BarChart.Horizontal.tsx} +111 -34
- package/src/components/{BarChart.StackedHorizontal.jsx → BarChart/components/BarChart.StackedHorizontal.tsx} +55 -20
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +106 -0
- package/src/components/{BarChart.Vertical.jsx → BarChart/components/BarChart.Vertical.tsx} +162 -34
- package/src/components/BarChart/components/BarChart.jsx +39 -0
- package/src/components/{BarChartType.jsx → BarChart/components/BarChartType.jsx} +0 -2
- package/src/components/BarChart/components/context.tsx +13 -0
- package/src/components/BarChart/index.tsx +3 -0
- package/src/components/{BoxPlot.jsx → BoxPlot/BoxPlot.jsx} +1 -1
- package/src/components/BoxPlot/index.tsx +3 -0
- package/src/components/DeviationBar.jsx +4 -3
- package/src/components/{EditorPanel.jsx → EditorPanel/EditorPanel.tsx} +807 -865
- package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +109 -0
- package/src/components/{ForestPlotSettings.jsx → EditorPanel/components/Panel.ForestPlotSettings.tsx} +190 -220
- package/src/components/EditorPanel/components/Panel.Regions.tsx +168 -0
- package/src/components/{Series.jsx → EditorPanel/components/Panel.Series.tsx} +23 -4
- package/src/components/EditorPanel/components/PanelProps.ts +3 -0
- package/src/components/EditorPanel/components/Panels.tsx +13 -0
- package/src/components/EditorPanel/components/panels.scss +72 -0
- package/src/components/EditorPanel/editor-panel.scss +751 -0
- package/src/components/EditorPanel/index.tsx +3 -0
- package/src/{hooks → components/EditorPanel}/useEditorPermissions.js +50 -5
- package/src/components/{Forecasting.jsx → Forecasting/Forecasting.jsx} +1 -1
- package/src/components/Forecasting/index.tsx +3 -0
- package/src/components/ForestPlot/ForestPlot.tsx +254 -0
- package/src/components/ForestPlot/ForestPlotProps.ts +18 -0
- package/src/components/ForestPlot/index.scss +1 -0
- package/src/components/ForestPlot/index.tsx +3 -0
- package/src/components/Legend/Legend.tsx +347 -0
- package/src/components/Legend/index.tsx +3 -0
- package/src/components/LineChart/LineChartProps.ts +46 -0
- package/src/components/{LineChart.Circle.tsx → LineChart/components/LineChart.Circle.tsx} +36 -30
- package/src/components/LineChart/helpers.ts +45 -0
- package/src/components/LineChart/index.scss +1 -0
- package/src/components/{LineChart.tsx → LineChart/index.tsx} +83 -42
- package/src/components/LinearChart.jsx +125 -82
- package/src/components/PairedBarChart.jsx +2 -2
- package/src/components/{PieChart.jsx → PieChart/PieChart.tsx} +16 -7
- package/src/components/PieChart/index.tsx +3 -0
- package/src/components/Regions/components/Regions.tsx +135 -0
- package/src/components/Regions/index.tsx +3 -0
- package/src/components/{ScatterPlot.jsx → ScatterPlot/ScatterPlot.jsx} +3 -3
- package/src/components/ScatterPlot/index.tsx +3 -0
- package/src/components/{SparkLine.jsx → Sparkline/SparkLine.jsx} +2 -2
- package/src/components/Sparkline/index.tsx +3 -0
- package/src/components/ZoomBrush.tsx +168 -0
- package/src/data/initial-state.js +30 -16
- package/src/helpers/abbreviateNumber.ts +17 -0
- package/src/helpers/computeMarginBottom.ts +55 -0
- package/src/helpers/filterData.ts +18 -0
- package/src/helpers/generateColorsArray.ts +8 -0
- package/src/helpers/getQuartiles.ts +30 -0
- package/src/helpers/handleChartAriaLabels.ts +19 -0
- package/src/helpers/handleLineType.ts +18 -0
- package/src/helpers/lineOptions.ts +18 -0
- package/src/helpers/sort.ts +7 -0
- package/src/helpers/tests/computeMarginBottom.test.ts +20 -0
- package/src/hooks/useBarChart.js +72 -7
- package/src/hooks/useColorScale.ts +50 -0
- package/src/hooks/{useMinMax.js → useMinMax.ts} +75 -23
- package/src/hooks/{useRightAxis.js → useRightAxis.ts} +10 -2
- package/src/hooks/{useScales.js → useScales.ts} +64 -17
- package/src/hooks/{useTooltip.jsx → useTooltip.tsx} +84 -55
- package/src/scss/main.scss +70 -38
- package/src/types/ChartConfig.ts +178 -0
- package/src/types/ChartContext.ts +54 -0
- package/src/types/ForestPlot.ts +53 -0
- package/examples/feature/scatterplot/scatterplot-continuous.csv +0 -17
- package/src/ConfigContext.jsx +0 -5
- package/src/components/BarChart.StackedVertical.jsx +0 -95
- package/src/components/BarChart.jsx +0 -30
- package/src/components/ForestPlot.jsx +0 -191
- package/src/components/Legend.jsx +0 -277
- package/src/scss/LinearChart.scss +0 -0
- package/src/scss/editor-panel.scss +0 -745
- package/src/scss/legend.scss +0 -206
- package/src/scss/mixins.scss +0 -0
- package/src/scss/variables.scss +0 -1
|
@@ -0,0 +1,3740 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "chart",
|
|
3
|
+
"debugSvg": false,
|
|
4
|
+
"title": "",
|
|
5
|
+
"showTitle": true,
|
|
6
|
+
"showDownloadMediaButton": false,
|
|
7
|
+
"showChartBrush": false,
|
|
8
|
+
"theme": "theme-blue",
|
|
9
|
+
"animate": false,
|
|
10
|
+
"fontSize": "small",
|
|
11
|
+
"lineDatapointStyle": "hover",
|
|
12
|
+
"barHasBorder": "false",
|
|
13
|
+
"isLollipopChart": false,
|
|
14
|
+
"lollipopShape": "circle",
|
|
15
|
+
"lollipopColorStyle": "two-tone",
|
|
16
|
+
"visualizationSubType": "regular",
|
|
17
|
+
"barStyle": "",
|
|
18
|
+
"roundingStyle": "standard",
|
|
19
|
+
"tipRounding": "top",
|
|
20
|
+
"isResponsiveTicks": false,
|
|
21
|
+
"general": {
|
|
22
|
+
"showDownloadButton": false
|
|
23
|
+
},
|
|
24
|
+
"padding": {
|
|
25
|
+
"left": 5,
|
|
26
|
+
"right": 5
|
|
27
|
+
},
|
|
28
|
+
"yAxis": {
|
|
29
|
+
"hideAxis": false,
|
|
30
|
+
"displayNumbersOnBar": false,
|
|
31
|
+
"hideLabel": false,
|
|
32
|
+
"hideTicks": true,
|
|
33
|
+
"size": "70",
|
|
34
|
+
"gridLines": true,
|
|
35
|
+
"enablePadding": true,
|
|
36
|
+
"min": "",
|
|
37
|
+
"max": "",
|
|
38
|
+
"labelColor": "#333",
|
|
39
|
+
"tickLabelColor": "#333",
|
|
40
|
+
"tickColor": "#333",
|
|
41
|
+
"rightHideAxis": true,
|
|
42
|
+
"rightAxisSize": 0,
|
|
43
|
+
"rightLabel": "",
|
|
44
|
+
"rightLabelOffsetSize": 0,
|
|
45
|
+
"rightAxisLabelColor": "#333",
|
|
46
|
+
"rightAxisTickLabelColor": "#333",
|
|
47
|
+
"rightAxisTickColor": "#333",
|
|
48
|
+
"numTicks": "",
|
|
49
|
+
"axisPadding": 0,
|
|
50
|
+
"tickRotation": 0,
|
|
51
|
+
"anchors": [],
|
|
52
|
+
"label": "Percent of Deaths"
|
|
53
|
+
},
|
|
54
|
+
"boxplot": {
|
|
55
|
+
"plots": [],
|
|
56
|
+
"borders": "true",
|
|
57
|
+
"firstQuartilePercentage": 25,
|
|
58
|
+
"thirdQuartilePercentage": 75,
|
|
59
|
+
"boxWidthPercentage": 40,
|
|
60
|
+
"plotOutlierValues": false,
|
|
61
|
+
"plotNonOutlierValues": true,
|
|
62
|
+
"legend": {
|
|
63
|
+
"showHowToReadText": false,
|
|
64
|
+
"howToReadText": ""
|
|
65
|
+
},
|
|
66
|
+
"labels": {
|
|
67
|
+
"q1": "Lower Quartile",
|
|
68
|
+
"q2": "q2",
|
|
69
|
+
"q3": "Upper Quartile",
|
|
70
|
+
"q4": "q4",
|
|
71
|
+
"minimum": "Minimum",
|
|
72
|
+
"maximum": "Maximum",
|
|
73
|
+
"mean": "Mean",
|
|
74
|
+
"median": "Median",
|
|
75
|
+
"sd": "Standard Deviation",
|
|
76
|
+
"iqr": "Interquartile Range",
|
|
77
|
+
"total": "Total",
|
|
78
|
+
"outliers": "Outliers",
|
|
79
|
+
"values": "Values",
|
|
80
|
+
"lowerBounds": "Lower Bounds",
|
|
81
|
+
"upperBounds": "Upper Bounds"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"topAxis": {
|
|
85
|
+
"hasLine": false
|
|
86
|
+
},
|
|
87
|
+
"isLegendValue": false,
|
|
88
|
+
"barThickness": 0.35,
|
|
89
|
+
"barHeight": 25,
|
|
90
|
+
"barSpace": 15,
|
|
91
|
+
"heights": {
|
|
92
|
+
"vertical": "319",
|
|
93
|
+
"horizontal": 750
|
|
94
|
+
},
|
|
95
|
+
"xAxis": {
|
|
96
|
+
"sortDates": false,
|
|
97
|
+
"anchors": [],
|
|
98
|
+
"type": "date",
|
|
99
|
+
"showTargetLabel": true,
|
|
100
|
+
"targetLabel": "Target",
|
|
101
|
+
"hideAxis": false,
|
|
102
|
+
"hideLabel": false,
|
|
103
|
+
"hideTicks": false,
|
|
104
|
+
"size": "92",
|
|
105
|
+
"tickRotation": "45",
|
|
106
|
+
"min": "",
|
|
107
|
+
"max": "",
|
|
108
|
+
"labelColor": "#333",
|
|
109
|
+
"tickLabelColor": "#333",
|
|
110
|
+
"tickColor": "#333",
|
|
111
|
+
"numTicks": "",
|
|
112
|
+
"labelOffset": 65,
|
|
113
|
+
"axisPadding": 0,
|
|
114
|
+
"target": 0,
|
|
115
|
+
"maxTickRotation": 0,
|
|
116
|
+
"dataKey": "week_end",
|
|
117
|
+
"dateParseFormat": "%Y-%m-%d",
|
|
118
|
+
"dateDisplayFormat": "%m/%d/%Y",
|
|
119
|
+
"label": "Week Ending"
|
|
120
|
+
},
|
|
121
|
+
"table": {
|
|
122
|
+
"label": "Data Table",
|
|
123
|
+
"expanded": false,
|
|
124
|
+
"limitHeight": false,
|
|
125
|
+
"height": "",
|
|
126
|
+
"caption": "",
|
|
127
|
+
"showDownloadUrl": false,
|
|
128
|
+
"showDataTableLink": true,
|
|
129
|
+
"indexLabel": "Week Ending",
|
|
130
|
+
"download": false,
|
|
131
|
+
"showVertical": true,
|
|
132
|
+
"show": true
|
|
133
|
+
},
|
|
134
|
+
"orientation": "vertical",
|
|
135
|
+
"color": "pinkpurple",
|
|
136
|
+
"columns": {},
|
|
137
|
+
"legend": {
|
|
138
|
+
"behavior": "isolate",
|
|
139
|
+
"singleRow": true,
|
|
140
|
+
"colorCode": "",
|
|
141
|
+
"reverseLabelOrder": false,
|
|
142
|
+
"description": "",
|
|
143
|
+
"dynamicLegend": false,
|
|
144
|
+
"dynamicLegendDefaultText": "Show All",
|
|
145
|
+
"dynamicLegendItemLimit": 5,
|
|
146
|
+
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
147
|
+
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
148
|
+
"lineMode": false,
|
|
149
|
+
"verticalSorted": false,
|
|
150
|
+
"label": "Age Groups",
|
|
151
|
+
"hide": false,
|
|
152
|
+
"position": "bottom"
|
|
153
|
+
},
|
|
154
|
+
"exclusions": {
|
|
155
|
+
"active": false,
|
|
156
|
+
"keys": []
|
|
157
|
+
},
|
|
158
|
+
"palette": "qualitative-bold",
|
|
159
|
+
"isPaletteReversed": false,
|
|
160
|
+
"twoColor": {
|
|
161
|
+
"palette": "monochrome-1",
|
|
162
|
+
"isPaletteReversed": false
|
|
163
|
+
},
|
|
164
|
+
"labels": false,
|
|
165
|
+
"dataFormat": {
|
|
166
|
+
"commas": false,
|
|
167
|
+
"prefix": "",
|
|
168
|
+
"suffix": "%",
|
|
169
|
+
"abbreviated": false,
|
|
170
|
+
"bottomSuffix": "",
|
|
171
|
+
"bottomPrefix": "",
|
|
172
|
+
"bottomAbbreviated": false,
|
|
173
|
+
"roundTo": "2"
|
|
174
|
+
},
|
|
175
|
+
"confidenceKeys": {},
|
|
176
|
+
"visual": {
|
|
177
|
+
"border": true,
|
|
178
|
+
"accent": true,
|
|
179
|
+
"background": true,
|
|
180
|
+
"verticalHoverLine": true,
|
|
181
|
+
"horizontalHoverLine": false
|
|
182
|
+
},
|
|
183
|
+
"useLogScale": false,
|
|
184
|
+
"filterBehavior": "Filter Change",
|
|
185
|
+
"highlightedBarValues": [],
|
|
186
|
+
"series": [
|
|
187
|
+
{
|
|
188
|
+
"dataKey": "0-17 years",
|
|
189
|
+
"type": "Line",
|
|
190
|
+
"axis": "Left",
|
|
191
|
+
"tooltip": true
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"dataKey": "18-64 years",
|
|
195
|
+
"type": "Line",
|
|
196
|
+
"axis": "Left",
|
|
197
|
+
"tooltip": true
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"dataKey": "65+ years",
|
|
201
|
+
"type": "Line",
|
|
202
|
+
"axis": "Left",
|
|
203
|
+
"tooltip": true
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"tooltips": {
|
|
207
|
+
"opacity": 90
|
|
208
|
+
},
|
|
209
|
+
"forestPlot": {
|
|
210
|
+
"startAt": 0,
|
|
211
|
+
"width": "auto",
|
|
212
|
+
"colors": {
|
|
213
|
+
"line": "",
|
|
214
|
+
"shape": ""
|
|
215
|
+
},
|
|
216
|
+
"estimateField": "",
|
|
217
|
+
"estimateRadius": "",
|
|
218
|
+
"lowerCiField": "",
|
|
219
|
+
"upperCiField": "",
|
|
220
|
+
"shape": "",
|
|
221
|
+
"rowHeight": 20,
|
|
222
|
+
"showZeroLine": false,
|
|
223
|
+
"description": {
|
|
224
|
+
"show": true,
|
|
225
|
+
"text": "description",
|
|
226
|
+
"location": 0
|
|
227
|
+
},
|
|
228
|
+
"result": {
|
|
229
|
+
"show": true,
|
|
230
|
+
"text": "result",
|
|
231
|
+
"location": 100
|
|
232
|
+
},
|
|
233
|
+
"radius": {
|
|
234
|
+
"min": 1,
|
|
235
|
+
"max": 8,
|
|
236
|
+
"scalingColumn": ""
|
|
237
|
+
},
|
|
238
|
+
"regression": {
|
|
239
|
+
"lower": 0,
|
|
240
|
+
"upper": 0,
|
|
241
|
+
"estimateField": 0
|
|
242
|
+
},
|
|
243
|
+
"leftWidthOffset": 0,
|
|
244
|
+
"rightWidthOffset": 0
|
|
245
|
+
},
|
|
246
|
+
"brush": {
|
|
247
|
+
"pattern_id": "brush_pattern",
|
|
248
|
+
"accent_color": "#ddd"
|
|
249
|
+
},
|
|
250
|
+
"datasets": {},
|
|
251
|
+
"visualizationType": "Line",
|
|
252
|
+
"customColors": [
|
|
253
|
+
"#012e65",
|
|
254
|
+
"#ec5841",
|
|
255
|
+
"#32b2d6",
|
|
256
|
+
"#072768",
|
|
257
|
+
"#0A6C75",
|
|
258
|
+
"#00a089",
|
|
259
|
+
"#87b6f9",
|
|
260
|
+
"#867a77",
|
|
261
|
+
"#000000"
|
|
262
|
+
],
|
|
263
|
+
"data": [
|
|
264
|
+
{
|
|
265
|
+
"week_end": "2022-10-01",
|
|
266
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
267
|
+
"pathogen": "COVID-19",
|
|
268
|
+
"demographic_type": "Age Group",
|
|
269
|
+
"0-17 years": "1.9",
|
|
270
|
+
"65+ years": "4.7",
|
|
271
|
+
"18-64 years": "2.2"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"week_end": "2022-10-01",
|
|
275
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
276
|
+
"pathogen": "Influenza",
|
|
277
|
+
"demographic_type": "Age Group",
|
|
278
|
+
"65+ years": "0.0",
|
|
279
|
+
"0-17 years": "0.0"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"week_end": "2022-10-01",
|
|
283
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
284
|
+
"pathogen": "Combined",
|
|
285
|
+
"demographic_type": "Age Group",
|
|
286
|
+
"0-17 years": "2.2",
|
|
287
|
+
"65+ years": "4.8",
|
|
288
|
+
"18-64 years": "2.2"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"week_end": "2022-10-08",
|
|
292
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
293
|
+
"pathogen": "Influenza",
|
|
294
|
+
"demographic_type": "Age Group",
|
|
295
|
+
"65+ years": "0.0"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"week_end": "2022-10-08",
|
|
299
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
300
|
+
"pathogen": "Combined",
|
|
301
|
+
"demographic_type": "Age Group",
|
|
302
|
+
"0-17 years": "2.2",
|
|
303
|
+
"65+ years": "4.3",
|
|
304
|
+
"18-64 years": "2.1"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"week_end": "2022-10-08",
|
|
308
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
309
|
+
"pathogen": "COVID-19",
|
|
310
|
+
"demographic_type": "Age Group",
|
|
311
|
+
"65+ years": "4.2",
|
|
312
|
+
"18-64 years": "2.1"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"week_end": "2022-10-15",
|
|
316
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
317
|
+
"pathogen": "Influenza",
|
|
318
|
+
"demographic_type": "Age Group",
|
|
319
|
+
"65+ years": "0.1",
|
|
320
|
+
"18-64 years": "0.1"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"week_end": "2022-10-15",
|
|
324
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
325
|
+
"pathogen": "Combined",
|
|
326
|
+
"demographic_type": "Age Group",
|
|
327
|
+
"0-17 years": "1.5",
|
|
328
|
+
"65+ years": "4.3",
|
|
329
|
+
"18-64 years": "2.1"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"week_end": "2022-10-15",
|
|
333
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
334
|
+
"pathogen": "COVID-19",
|
|
335
|
+
"demographic_type": "Age Group",
|
|
336
|
+
"65+ years": "4.2",
|
|
337
|
+
"18-64 years": "2.0"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"week_end": "2022-10-22",
|
|
341
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
342
|
+
"pathogen": "COVID-19",
|
|
343
|
+
"demographic_type": "Age Group",
|
|
344
|
+
"0-17 years": "1.9",
|
|
345
|
+
"65+ years": "4.2",
|
|
346
|
+
"18-64 years": "2.1"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"week_end": "2022-10-22",
|
|
350
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
351
|
+
"pathogen": "RSV",
|
|
352
|
+
"demographic_type": "Age Group",
|
|
353
|
+
"65+ years": "0.0"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"week_end": "2022-10-22",
|
|
357
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
358
|
+
"pathogen": "Influenza",
|
|
359
|
+
"demographic_type": "Age Group",
|
|
360
|
+
"65+ years": "0.1",
|
|
361
|
+
"18-64 years": "0.1"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"week_end": "2022-10-22",
|
|
365
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
366
|
+
"pathogen": "Combined",
|
|
367
|
+
"demographic_type": "Age Group",
|
|
368
|
+
"0-17 years": "2.9",
|
|
369
|
+
"65+ years": "4.3",
|
|
370
|
+
"18-64 years": "2.3"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"week_end": "2022-10-29",
|
|
374
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
375
|
+
"pathogen": "Influenza",
|
|
376
|
+
"demographic_type": "Age Group",
|
|
377
|
+
"65+ years": "0.1",
|
|
378
|
+
"18-64 years": "0.2"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"week_end": "2022-10-29",
|
|
382
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
383
|
+
"pathogen": "Combined",
|
|
384
|
+
"demographic_type": "Age Group",
|
|
385
|
+
"0-17 years": "2.5",
|
|
386
|
+
"65+ years": "4.5",
|
|
387
|
+
"18-64 years": "2.2"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"week_end": "2022-10-29",
|
|
391
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
392
|
+
"pathogen": "COVID-19",
|
|
393
|
+
"demographic_type": "Age Group",
|
|
394
|
+
"65+ years": "4.3",
|
|
395
|
+
"18-64 years": "2.0"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"week_end": "2022-11-05",
|
|
399
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
400
|
+
"pathogen": "RSV",
|
|
401
|
+
"demographic_type": "Age Group",
|
|
402
|
+
"65+ years": "0.0",
|
|
403
|
+
"18-64 years": "0.0"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"week_end": "2022-11-05",
|
|
407
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
408
|
+
"pathogen": "Influenza",
|
|
409
|
+
"demographic_type": "Age Group",
|
|
410
|
+
"65+ years": "0.2",
|
|
411
|
+
"0-17 years": "1.3",
|
|
412
|
+
"18-64 years": "0.3"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"week_end": "2022-11-05",
|
|
416
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
417
|
+
"pathogen": "Combined",
|
|
418
|
+
"demographic_type": "Age Group",
|
|
419
|
+
"0-17 years": "2.9",
|
|
420
|
+
"65+ years": "4.5",
|
|
421
|
+
"18-64 years": "2.2"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"week_end": "2022-11-05",
|
|
425
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
426
|
+
"pathogen": "COVID-19",
|
|
427
|
+
"demographic_type": "Age Group",
|
|
428
|
+
"65+ years": "4.3",
|
|
429
|
+
"18-64 years": "2.0"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"week_end": "2022-11-12",
|
|
433
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
434
|
+
"pathogen": "RSV",
|
|
435
|
+
"demographic_type": "Age Group",
|
|
436
|
+
"65+ years": "0.1"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"week_end": "2022-11-12",
|
|
440
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
441
|
+
"pathogen": "Influenza",
|
|
442
|
+
"demographic_type": "Age Group",
|
|
443
|
+
"65+ years": "0.3",
|
|
444
|
+
"0-17 years": "1.5",
|
|
445
|
+
"18-64 years": "0.6"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"week_end": "2022-11-12",
|
|
449
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
450
|
+
"pathogen": "Combined",
|
|
451
|
+
"demographic_type": "Age Group",
|
|
452
|
+
"0-17 years": "2.9",
|
|
453
|
+
"65+ years": "4.5",
|
|
454
|
+
"18-64 years": "2.6"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"week_end": "2022-11-12",
|
|
458
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
459
|
+
"pathogen": "COVID-19",
|
|
460
|
+
"demographic_type": "Age Group",
|
|
461
|
+
"65+ years": "4.2",
|
|
462
|
+
"18-64 years": "2.0"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"week_end": "2022-11-19",
|
|
466
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
467
|
+
"pathogen": "RSV",
|
|
468
|
+
"demographic_type": "Age Group",
|
|
469
|
+
"65+ years": "0.0"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"week_end": "2022-11-19",
|
|
473
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
474
|
+
"pathogen": "Influenza",
|
|
475
|
+
"demographic_type": "Age Group",
|
|
476
|
+
"65+ years": "0.4",
|
|
477
|
+
"0-17 years": "1.6",
|
|
478
|
+
"18-64 years": "0.5"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"week_end": "2022-11-19",
|
|
482
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
483
|
+
"pathogen": "Combined",
|
|
484
|
+
"demographic_type": "Age Group",
|
|
485
|
+
"0-17 years": "3.1",
|
|
486
|
+
"65+ years": "4.7",
|
|
487
|
+
"18-64 years": "2.4"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"week_end": "2022-11-19",
|
|
491
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
492
|
+
"pathogen": "COVID-19",
|
|
493
|
+
"demographic_type": "Age Group",
|
|
494
|
+
"65+ years": "4.3",
|
|
495
|
+
"18-64 years": "1.9"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"week_end": "2022-11-26",
|
|
499
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
500
|
+
"pathogen": "RSV",
|
|
501
|
+
"demographic_type": "Age Group",
|
|
502
|
+
"65+ years": "0.1"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"week_end": "2022-11-26",
|
|
506
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
507
|
+
"pathogen": "Influenza",
|
|
508
|
+
"demographic_type": "Age Group",
|
|
509
|
+
"65+ years": "0.6",
|
|
510
|
+
"0-17 years": "2.8",
|
|
511
|
+
"18-64 years": "0.8"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"week_end": "2022-11-26",
|
|
515
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
516
|
+
"pathogen": "Combined",
|
|
517
|
+
"demographic_type": "Age Group",
|
|
518
|
+
"0-17 years": "4.6",
|
|
519
|
+
"65+ years": "5.1",
|
|
520
|
+
"18-64 years": "2.9"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"week_end": "2022-11-26",
|
|
524
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
525
|
+
"pathogen": "COVID-19",
|
|
526
|
+
"demographic_type": "Age Group",
|
|
527
|
+
"65+ years": "4.5",
|
|
528
|
+
"18-64 years": "2.1"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"week_end": "2022-12-03",
|
|
532
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
533
|
+
"pathogen": "RSV",
|
|
534
|
+
"demographic_type": "Age Group",
|
|
535
|
+
"65+ years": "0.1"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"week_end": "2022-12-03",
|
|
539
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
540
|
+
"pathogen": "Influenza",
|
|
541
|
+
"demographic_type": "Age Group",
|
|
542
|
+
"65+ years": "1.1",
|
|
543
|
+
"0-17 years": "3.5",
|
|
544
|
+
"18-64 years": "1.6"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"week_end": "2022-12-03",
|
|
548
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
549
|
+
"pathogen": "Combined",
|
|
550
|
+
"demographic_type": "Age Group",
|
|
551
|
+
"0-17 years": "5.2",
|
|
552
|
+
"65+ years": "5.8",
|
|
553
|
+
"18-64 years": "3.6"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"week_end": "2022-12-03",
|
|
557
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
558
|
+
"pathogen": "COVID-19",
|
|
559
|
+
"demographic_type": "Age Group",
|
|
560
|
+
"65+ years": "4.6",
|
|
561
|
+
"18-64 years": "2.0"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"week_end": "2022-12-10",
|
|
565
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
566
|
+
"pathogen": "RSV",
|
|
567
|
+
"demographic_type": "Age Group",
|
|
568
|
+
"65+ years": "0.1",
|
|
569
|
+
"18-64 years": "0.1"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"week_end": "2022-12-10",
|
|
573
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
574
|
+
"pathogen": "Influenza",
|
|
575
|
+
"demographic_type": "Age Group",
|
|
576
|
+
"65+ years": "1.4",
|
|
577
|
+
"0-17 years": "2.3",
|
|
578
|
+
"18-64 years": "1.7"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"week_end": "2022-12-10",
|
|
582
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
583
|
+
"pathogen": "Combined",
|
|
584
|
+
"demographic_type": "Age Group",
|
|
585
|
+
"0-17 years": "3.5",
|
|
586
|
+
"65+ years": "6.7",
|
|
587
|
+
"18-64 years": "4.1"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"week_end": "2022-12-10",
|
|
591
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
592
|
+
"pathogen": "COVID-19",
|
|
593
|
+
"demographic_type": "Age Group",
|
|
594
|
+
"65+ years": "5.3",
|
|
595
|
+
"18-64 years": "2.4"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"week_end": "2022-12-17",
|
|
599
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
600
|
+
"pathogen": "RSV",
|
|
601
|
+
"demographic_type": "Age Group",
|
|
602
|
+
"65+ years": "0.1"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"week_end": "2022-12-17",
|
|
606
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
607
|
+
"pathogen": "Influenza",
|
|
608
|
+
"demographic_type": "Age Group",
|
|
609
|
+
"65+ years": "1.5",
|
|
610
|
+
"0-17 years": "3.2",
|
|
611
|
+
"18-64 years": "1.5"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"week_end": "2022-12-17",
|
|
615
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
616
|
+
"pathogen": "Combined",
|
|
617
|
+
"demographic_type": "Age Group",
|
|
618
|
+
"0-17 years": "4.3",
|
|
619
|
+
"65+ years": "7.1",
|
|
620
|
+
"18-64 years": "4.1"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"week_end": "2022-12-17",
|
|
624
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
625
|
+
"pathogen": "COVID-19",
|
|
626
|
+
"demographic_type": "Age Group",
|
|
627
|
+
"65+ years": "5.6",
|
|
628
|
+
"18-64 years": "2.6"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"week_end": "2022-12-24",
|
|
632
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
633
|
+
"pathogen": "COVID-19",
|
|
634
|
+
"demographic_type": "Age Group",
|
|
635
|
+
"0-17 years": "2.0",
|
|
636
|
+
"65+ years": "5.6",
|
|
637
|
+
"18-64 years": "2.7"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"week_end": "2022-12-24",
|
|
641
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
642
|
+
"pathogen": "RSV",
|
|
643
|
+
"demographic_type": "Age Group",
|
|
644
|
+
"65+ years": "0.1"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"week_end": "2022-12-24",
|
|
648
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
649
|
+
"pathogen": "Influenza",
|
|
650
|
+
"demographic_type": "Age Group",
|
|
651
|
+
"65+ years": "1.3",
|
|
652
|
+
"0-17 years": "2.3",
|
|
653
|
+
"18-64 years": "1.4"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"week_end": "2022-12-24",
|
|
657
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
658
|
+
"pathogen": "Combined",
|
|
659
|
+
"demographic_type": "Age Group",
|
|
660
|
+
"0-17 years": "4.8",
|
|
661
|
+
"65+ years": "6.9",
|
|
662
|
+
"18-64 years": "4.2"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"week_end": "2022-12-31",
|
|
666
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
667
|
+
"pathogen": "COVID-19",
|
|
668
|
+
"demographic_type": "Age Group",
|
|
669
|
+
"0-17 years": "1.5",
|
|
670
|
+
"65+ years": "6.0",
|
|
671
|
+
"18-64 years": "2.9"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"week_end": "2022-12-31",
|
|
675
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
676
|
+
"pathogen": "RSV",
|
|
677
|
+
"demographic_type": "Age Group",
|
|
678
|
+
"65+ years": "0.1"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"week_end": "2022-12-31",
|
|
682
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
683
|
+
"pathogen": "Influenza",
|
|
684
|
+
"demographic_type": "Age Group",
|
|
685
|
+
"65+ years": "1.4",
|
|
686
|
+
"0-17 years": "1.5",
|
|
687
|
+
"18-64 years": "1.4"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"week_end": "2022-12-31",
|
|
691
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
692
|
+
"pathogen": "Combined",
|
|
693
|
+
"demographic_type": "Age Group",
|
|
694
|
+
"0-17 years": "3.7",
|
|
695
|
+
"65+ years": "7.4",
|
|
696
|
+
"18-64 years": "4.3"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"week_end": "2023-01-07",
|
|
700
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
701
|
+
"pathogen": "COVID-19",
|
|
702
|
+
"demographic_type": "Age Group",
|
|
703
|
+
"0-17 years": "1.7",
|
|
704
|
+
"65+ years": "6.5",
|
|
705
|
+
"18-64 years": "3.0"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"week_end": "2023-01-07",
|
|
709
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
710
|
+
"pathogen": "RSV",
|
|
711
|
+
"demographic_type": "Age Group",
|
|
712
|
+
"65+ years": "0.1"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"week_end": "2023-01-07",
|
|
716
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
717
|
+
"pathogen": "Influenza",
|
|
718
|
+
"demographic_type": "Age Group",
|
|
719
|
+
"65+ years": "1.3",
|
|
720
|
+
"0-17 years": "1.5",
|
|
721
|
+
"18-64 years": "1.1"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"week_end": "2023-01-07",
|
|
725
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
726
|
+
"pathogen": "Combined",
|
|
727
|
+
"demographic_type": "Age Group",
|
|
728
|
+
"0-17 years": "3.8",
|
|
729
|
+
"65+ years": "7.8",
|
|
730
|
+
"18-64 years": "4.1"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"week_end": "2023-01-14",
|
|
734
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
735
|
+
"pathogen": "COVID-19",
|
|
736
|
+
"demographic_type": "Age Group",
|
|
737
|
+
"0-17 years": "1.4",
|
|
738
|
+
"65+ years": "6.4",
|
|
739
|
+
"18-64 years": "3.0"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"week_end": "2023-01-14",
|
|
743
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
744
|
+
"pathogen": "RSV",
|
|
745
|
+
"demographic_type": "Age Group",
|
|
746
|
+
"65+ years": "0.1"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"week_end": "2023-01-14",
|
|
750
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
751
|
+
"pathogen": "Influenza",
|
|
752
|
+
"demographic_type": "Age Group",
|
|
753
|
+
"65+ years": "0.9",
|
|
754
|
+
"0-17 years": "1.8",
|
|
755
|
+
"18-64 years": "0.9"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"week_end": "2023-01-14",
|
|
759
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
760
|
+
"pathogen": "Combined",
|
|
761
|
+
"demographic_type": "Age Group",
|
|
762
|
+
"0-17 years": "3.2",
|
|
763
|
+
"65+ years": "7.4",
|
|
764
|
+
"18-64 years": "3.9"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"week_end": "2023-01-21",
|
|
768
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
769
|
+
"pathogen": "RSV",
|
|
770
|
+
"demographic_type": "Age Group",
|
|
771
|
+
"65+ years": "0.1"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"week_end": "2023-01-21",
|
|
775
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
776
|
+
"pathogen": "Influenza",
|
|
777
|
+
"demographic_type": "Age Group",
|
|
778
|
+
"65+ years": "0.6",
|
|
779
|
+
"18-64 years": "0.4"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"week_end": "2023-01-21",
|
|
783
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
784
|
+
"pathogen": "Combined",
|
|
785
|
+
"demographic_type": "Age Group",
|
|
786
|
+
"0-17 years": "2.1",
|
|
787
|
+
"65+ years": "6.6",
|
|
788
|
+
"18-64 years": "3.0"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"week_end": "2023-01-21",
|
|
792
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
793
|
+
"pathogen": "COVID-19",
|
|
794
|
+
"demographic_type": "Age Group",
|
|
795
|
+
"65+ years": "5.9",
|
|
796
|
+
"18-64 years": "2.6"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"week_end": "2023-01-28",
|
|
800
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
801
|
+
"pathogen": "COVID-19",
|
|
802
|
+
"demographic_type": "Age Group",
|
|
803
|
+
"0-17 years": "1.8",
|
|
804
|
+
"65+ years": "5.4",
|
|
805
|
+
"18-64 years": "2.5"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"week_end": "2023-01-28",
|
|
809
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
810
|
+
"pathogen": "RSV",
|
|
811
|
+
"demographic_type": "Age Group",
|
|
812
|
+
"65+ years": "0.0",
|
|
813
|
+
"18-64 years": "0.0"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"week_end": "2023-01-28",
|
|
817
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
818
|
+
"pathogen": "Influenza",
|
|
819
|
+
"demographic_type": "Age Group",
|
|
820
|
+
"65+ years": "0.4",
|
|
821
|
+
"18-64 years": "0.4"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"week_end": "2023-01-28",
|
|
825
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
826
|
+
"pathogen": "Combined",
|
|
827
|
+
"demographic_type": "Age Group",
|
|
828
|
+
"0-17 years": "2.9",
|
|
829
|
+
"65+ years": "5.9",
|
|
830
|
+
"18-64 years": "2.9"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"week_end": "2023-02-04",
|
|
834
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
835
|
+
"pathogen": "RSV",
|
|
836
|
+
"demographic_type": "Age Group",
|
|
837
|
+
"65+ years": "0.0",
|
|
838
|
+
"0-17 years": "0.0"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"week_end": "2023-02-04",
|
|
842
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
843
|
+
"pathogen": "Influenza",
|
|
844
|
+
"demographic_type": "Age Group",
|
|
845
|
+
"65+ years": "0.2",
|
|
846
|
+
"18-64 years": "0.2"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"week_end": "2023-02-04",
|
|
850
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
851
|
+
"pathogen": "Combined",
|
|
852
|
+
"demographic_type": "Age Group",
|
|
853
|
+
"65+ years": "5.1",
|
|
854
|
+
"18-64 years": "2.4"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"week_end": "2023-02-04",
|
|
858
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
859
|
+
"pathogen": "COVID-19",
|
|
860
|
+
"demographic_type": "Age Group",
|
|
861
|
+
"65+ years": "4.9",
|
|
862
|
+
"18-64 years": "2.2"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"week_end": "2023-02-11",
|
|
866
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
867
|
+
"pathogen": "RSV",
|
|
868
|
+
"demographic_type": "Age Group",
|
|
869
|
+
"65+ years": "0.0",
|
|
870
|
+
"18-64 years": "0.0",
|
|
871
|
+
"0-17 years": "0.0"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"week_end": "2023-02-11",
|
|
875
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
876
|
+
"pathogen": "Influenza",
|
|
877
|
+
"demographic_type": "Age Group",
|
|
878
|
+
"65+ years": "0.2",
|
|
879
|
+
"18-64 years": "0.1"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"week_end": "2023-02-11",
|
|
883
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
884
|
+
"pathogen": "Combined",
|
|
885
|
+
"demographic_type": "Age Group",
|
|
886
|
+
"65+ years": "4.6",
|
|
887
|
+
"18-64 years": "2.0"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"week_end": "2023-02-11",
|
|
891
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
892
|
+
"pathogen": "COVID-19",
|
|
893
|
+
"demographic_type": "Age Group",
|
|
894
|
+
"65+ years": "4.4",
|
|
895
|
+
"18-64 years": "1.9"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"week_end": "2023-02-18",
|
|
899
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
900
|
+
"pathogen": "Influenza",
|
|
901
|
+
"demographic_type": "Age Group",
|
|
902
|
+
"65+ years": "0.2",
|
|
903
|
+
"18-64 years": "0.1"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"week_end": "2023-02-18",
|
|
907
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
908
|
+
"pathogen": "Combined",
|
|
909
|
+
"demographic_type": "Age Group",
|
|
910
|
+
"0-17 years": "1.8",
|
|
911
|
+
"65+ years": "4.1",
|
|
912
|
+
"18-64 years": "2.0"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"week_end": "2023-02-18",
|
|
916
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
917
|
+
"pathogen": "COVID-19",
|
|
918
|
+
"demographic_type": "Age Group",
|
|
919
|
+
"65+ years": "3.9",
|
|
920
|
+
"18-64 years": "1.9"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"week_end": "2023-02-18",
|
|
924
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
925
|
+
"pathogen": "RSV",
|
|
926
|
+
"demographic_type": "Age Group",
|
|
927
|
+
"18-64 years": "0.0",
|
|
928
|
+
"0-17 years": "0.0"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"week_end": "2023-02-25",
|
|
932
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
933
|
+
"pathogen": "Influenza",
|
|
934
|
+
"demographic_type": "Age Group",
|
|
935
|
+
"65+ years": "0.1",
|
|
936
|
+
"18-64 years": "0.1"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"week_end": "2023-02-25",
|
|
940
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
941
|
+
"pathogen": "Combined",
|
|
942
|
+
"demographic_type": "Age Group",
|
|
943
|
+
"0-17 years": "1.6",
|
|
944
|
+
"65+ years": "4.2",
|
|
945
|
+
"18-64 years": "2.0"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"week_end": "2023-02-25",
|
|
949
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
950
|
+
"pathogen": "COVID-19",
|
|
951
|
+
"demographic_type": "Age Group",
|
|
952
|
+
"65+ years": "4.0",
|
|
953
|
+
"18-64 years": "1.9"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"week_end": "2023-02-25",
|
|
957
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
958
|
+
"pathogen": "RSV",
|
|
959
|
+
"demographic_type": "Age Group",
|
|
960
|
+
"0-17 years": "0.0"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"week_end": "2023-03-04",
|
|
964
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
965
|
+
"pathogen": "Influenza",
|
|
966
|
+
"demographic_type": "Age Group",
|
|
967
|
+
"65+ years": "0.1",
|
|
968
|
+
"18-64 years": "0.1"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"week_end": "2023-03-04",
|
|
972
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
973
|
+
"pathogen": "Combined",
|
|
974
|
+
"demographic_type": "Age Group",
|
|
975
|
+
"0-17 years": "1.6",
|
|
976
|
+
"65+ years": "3.9",
|
|
977
|
+
"18-64 years": "1.8"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"week_end": "2023-03-04",
|
|
981
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
982
|
+
"pathogen": "COVID-19",
|
|
983
|
+
"demographic_type": "Age Group",
|
|
984
|
+
"65+ years": "3.8",
|
|
985
|
+
"18-64 years": "1.7"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"week_end": "2023-03-04",
|
|
989
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
990
|
+
"pathogen": "RSV",
|
|
991
|
+
"demographic_type": "Age Group",
|
|
992
|
+
"18-64 years": "0.0",
|
|
993
|
+
"0-17 years": "0.0"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"week_end": "2023-03-11",
|
|
997
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
998
|
+
"pathogen": "Influenza",
|
|
999
|
+
"demographic_type": "Age Group",
|
|
1000
|
+
"65+ years": "0.1",
|
|
1001
|
+
"0-17 years": "0.0",
|
|
1002
|
+
"18-64 years": "0.1"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"week_end": "2023-03-11",
|
|
1006
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1007
|
+
"pathogen": "Combined",
|
|
1008
|
+
"demographic_type": "Age Group",
|
|
1009
|
+
"65+ years": "3.7",
|
|
1010
|
+
"18-64 years": "1.5"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"week_end": "2023-03-11",
|
|
1014
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1015
|
+
"pathogen": "COVID-19",
|
|
1016
|
+
"demographic_type": "Age Group",
|
|
1017
|
+
"65+ years": "3.6",
|
|
1018
|
+
"18-64 years": "1.4"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"week_end": "2023-03-11",
|
|
1022
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1023
|
+
"pathogen": "RSV",
|
|
1024
|
+
"demographic_type": "Age Group",
|
|
1025
|
+
"18-64 years": "0.0"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"week_end": "2023-03-18",
|
|
1029
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1030
|
+
"pathogen": "Influenza",
|
|
1031
|
+
"demographic_type": "Age Group",
|
|
1032
|
+
"65+ years": "0.1"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"week_end": "2023-03-18",
|
|
1036
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1037
|
+
"pathogen": "Combined",
|
|
1038
|
+
"demographic_type": "Age Group",
|
|
1039
|
+
"0-17 years": "1.4",
|
|
1040
|
+
"65+ years": "3.5",
|
|
1041
|
+
"18-64 years": "1.5"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"week_end": "2023-03-18",
|
|
1045
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1046
|
+
"pathogen": "COVID-19",
|
|
1047
|
+
"demographic_type": "Age Group",
|
|
1048
|
+
"65+ years": "3.4",
|
|
1049
|
+
"18-64 years": "1.4"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"week_end": "2023-03-18",
|
|
1053
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1054
|
+
"pathogen": "RSV",
|
|
1055
|
+
"demographic_type": "Age Group",
|
|
1056
|
+
"18-64 years": "0.0",
|
|
1057
|
+
"0-17 years": "0.0"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"week_end": "2023-03-25",
|
|
1061
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1062
|
+
"pathogen": "Influenza",
|
|
1063
|
+
"demographic_type": "Age Group",
|
|
1064
|
+
"65+ years": "0.1",
|
|
1065
|
+
"18-64 years": "0.1"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"week_end": "2023-03-25",
|
|
1069
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1070
|
+
"pathogen": "Combined",
|
|
1071
|
+
"demographic_type": "Age Group",
|
|
1072
|
+
"65+ years": "3.3",
|
|
1073
|
+
"18-64 years": "1.5"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"week_end": "2023-03-25",
|
|
1077
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1078
|
+
"pathogen": "COVID-19",
|
|
1079
|
+
"demographic_type": "Age Group",
|
|
1080
|
+
"65+ years": "3.2",
|
|
1081
|
+
"18-64 years": "1.4"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"week_end": "2023-03-25",
|
|
1085
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1086
|
+
"pathogen": "RSV",
|
|
1087
|
+
"demographic_type": "Age Group",
|
|
1088
|
+
"0-17 years": "0.0"
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"week_end": "2023-04-01",
|
|
1092
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1093
|
+
"pathogen": "RSV",
|
|
1094
|
+
"demographic_type": "Age Group",
|
|
1095
|
+
"65+ years": "0.0",
|
|
1096
|
+
"0-17 years": "0.0"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"week_end": "2023-04-01",
|
|
1100
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1101
|
+
"pathogen": "Influenza",
|
|
1102
|
+
"demographic_type": "Age Group",
|
|
1103
|
+
"65+ years": "0.1",
|
|
1104
|
+
"0-17 years": "0.0"
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"week_end": "2023-04-01",
|
|
1108
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1109
|
+
"pathogen": "Combined",
|
|
1110
|
+
"demographic_type": "Age Group",
|
|
1111
|
+
"65+ years": "2.9",
|
|
1112
|
+
"18-64 years": "1.2"
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"week_end": "2023-04-01",
|
|
1116
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1117
|
+
"pathogen": "COVID-19",
|
|
1118
|
+
"demographic_type": "Age Group",
|
|
1119
|
+
"65+ years": "2.8",
|
|
1120
|
+
"18-64 years": "1.2"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"week_end": "2023-04-08",
|
|
1124
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1125
|
+
"pathogen": "Influenza",
|
|
1126
|
+
"demographic_type": "Age Group",
|
|
1127
|
+
"65+ years": "0.1",
|
|
1128
|
+
"0-17 years": "0.0"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"week_end": "2023-04-08",
|
|
1132
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1133
|
+
"pathogen": "Combined",
|
|
1134
|
+
"demographic_type": "Age Group",
|
|
1135
|
+
"65+ years": "2.8",
|
|
1136
|
+
"18-64 years": "1.3"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"week_end": "2023-04-08",
|
|
1140
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1141
|
+
"pathogen": "COVID-19",
|
|
1142
|
+
"demographic_type": "Age Group",
|
|
1143
|
+
"65+ years": "2.8",
|
|
1144
|
+
"18-64 years": "1.2"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"week_end": "2023-04-08",
|
|
1148
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1149
|
+
"pathogen": "RSV",
|
|
1150
|
+
"demographic_type": "Age Group",
|
|
1151
|
+
"18-64 years": "0.0",
|
|
1152
|
+
"0-17 years": "0.0"
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"week_end": "2023-04-15",
|
|
1156
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1157
|
+
"pathogen": "COVID-19",
|
|
1158
|
+
"demographic_type": "Age Group",
|
|
1159
|
+
"0-17 years": "0.0",
|
|
1160
|
+
"65+ years": "2.5",
|
|
1161
|
+
"18-64 years": "1.0"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"week_end": "2023-04-15",
|
|
1165
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1166
|
+
"pathogen": "Influenza",
|
|
1167
|
+
"demographic_type": "Age Group",
|
|
1168
|
+
"65+ years": "0.1",
|
|
1169
|
+
"18-64 years": "0.1"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"week_end": "2023-04-15",
|
|
1173
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1174
|
+
"pathogen": "Combined",
|
|
1175
|
+
"demographic_type": "Age Group",
|
|
1176
|
+
"65+ years": "2.5",
|
|
1177
|
+
"18-64 years": "1.1"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"week_end": "2023-04-15",
|
|
1181
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1182
|
+
"pathogen": "RSV",
|
|
1183
|
+
"demographic_type": "Age Group",
|
|
1184
|
+
"0-17 years": "0.0"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"week_end": "2023-04-22",
|
|
1188
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1189
|
+
"pathogen": "RSV",
|
|
1190
|
+
"demographic_type": "Age Group",
|
|
1191
|
+
"65+ years": "0.0",
|
|
1192
|
+
"18-64 years": "0.0",
|
|
1193
|
+
"0-17 years": "0.0"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"week_end": "2023-04-22",
|
|
1197
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1198
|
+
"pathogen": "Influenza",
|
|
1199
|
+
"demographic_type": "Age Group",
|
|
1200
|
+
"65+ years": "0.1",
|
|
1201
|
+
"0-17 years": "0.0"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"week_end": "2023-04-22",
|
|
1205
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1206
|
+
"pathogen": "Combined",
|
|
1207
|
+
"demographic_type": "Age Group",
|
|
1208
|
+
"65+ years": "2.5",
|
|
1209
|
+
"18-64 years": "1.0"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"week_end": "2023-04-22",
|
|
1213
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1214
|
+
"pathogen": "COVID-19",
|
|
1215
|
+
"demographic_type": "Age Group",
|
|
1216
|
+
"65+ years": "2.4",
|
|
1217
|
+
"18-64 years": "1.0"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"week_end": "2023-04-29",
|
|
1221
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1222
|
+
"pathogen": "Influenza",
|
|
1223
|
+
"demographic_type": "Age Group",
|
|
1224
|
+
"65+ years": "0.1"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"week_end": "2023-04-29",
|
|
1228
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1229
|
+
"pathogen": "Combined",
|
|
1230
|
+
"demographic_type": "Age Group",
|
|
1231
|
+
"65+ years": "2.2",
|
|
1232
|
+
"18-64 years": "0.9"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"week_end": "2023-04-29",
|
|
1236
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1237
|
+
"pathogen": "COVID-19",
|
|
1238
|
+
"demographic_type": "Age Group",
|
|
1239
|
+
"65+ years": "2.1",
|
|
1240
|
+
"18-64 years": "0.9"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"week_end": "2023-04-29",
|
|
1244
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1245
|
+
"pathogen": "RSV",
|
|
1246
|
+
"demographic_type": "Age Group",
|
|
1247
|
+
"18-64 years": "0.0",
|
|
1248
|
+
"0-17 years": "0.0"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"week_end": "2023-05-06",
|
|
1252
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1253
|
+
"pathogen": "Influenza",
|
|
1254
|
+
"demographic_type": "Age Group",
|
|
1255
|
+
"65+ years": "0.0",
|
|
1256
|
+
"0-17 years": "0.0",
|
|
1257
|
+
"18-64 years": "0.1"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"week_end": "2023-05-06",
|
|
1261
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1262
|
+
"pathogen": "Combined",
|
|
1263
|
+
"demographic_type": "Age Group",
|
|
1264
|
+
"65+ years": "2.0",
|
|
1265
|
+
"18-64 years": "0.9"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"week_end": "2023-05-06",
|
|
1269
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1270
|
+
"pathogen": "COVID-19",
|
|
1271
|
+
"demographic_type": "Age Group",
|
|
1272
|
+
"65+ years": "1.9",
|
|
1273
|
+
"18-64 years": "0.8"
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"week_end": "2023-05-06",
|
|
1277
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1278
|
+
"pathogen": "RSV",
|
|
1279
|
+
"demographic_type": "Age Group",
|
|
1280
|
+
"0-17 years": "0.0"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"week_end": "2023-05-13",
|
|
1284
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1285
|
+
"pathogen": "Influenza",
|
|
1286
|
+
"demographic_type": "Age Group",
|
|
1287
|
+
"65+ years": "0.1"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"week_end": "2023-05-13",
|
|
1291
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1292
|
+
"pathogen": "Combined",
|
|
1293
|
+
"demographic_type": "Age Group",
|
|
1294
|
+
"65+ years": "1.8",
|
|
1295
|
+
"18-64 years": "0.8"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"week_end": "2023-05-13",
|
|
1299
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1300
|
+
"pathogen": "COVID-19",
|
|
1301
|
+
"demographic_type": "Age Group",
|
|
1302
|
+
"65+ years": "1.7",
|
|
1303
|
+
"18-64 years": "0.8"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"week_end": "2023-05-13",
|
|
1307
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1308
|
+
"pathogen": "RSV",
|
|
1309
|
+
"demographic_type": "Age Group",
|
|
1310
|
+
"18-64 years": "0.0",
|
|
1311
|
+
"0-17 years": "0.0"
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"week_end": "2023-05-20",
|
|
1315
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1316
|
+
"pathogen": "RSV",
|
|
1317
|
+
"demographic_type": "Age Group",
|
|
1318
|
+
"65+ years": "0.0",
|
|
1319
|
+
"18-64 years": "0.0"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"week_end": "2023-05-20",
|
|
1323
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1324
|
+
"pathogen": "Influenza",
|
|
1325
|
+
"demographic_type": "Age Group",
|
|
1326
|
+
"65+ years": "0.1",
|
|
1327
|
+
"0-17 years": "0.0"
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"week_end": "2023-05-20",
|
|
1331
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1332
|
+
"pathogen": "Combined",
|
|
1333
|
+
"demographic_type": "Age Group",
|
|
1334
|
+
"65+ years": "1.7",
|
|
1335
|
+
"18-64 years": "0.6"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"week_end": "2023-05-20",
|
|
1339
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1340
|
+
"pathogen": "COVID-19",
|
|
1341
|
+
"demographic_type": "Age Group",
|
|
1342
|
+
"65+ years": "1.6",
|
|
1343
|
+
"18-64 years": "0.6"
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"week_end": "2023-05-27",
|
|
1347
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1348
|
+
"pathogen": "Influenza",
|
|
1349
|
+
"demographic_type": "Age Group",
|
|
1350
|
+
"65+ years": "0.1"
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"week_end": "2023-05-27",
|
|
1354
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1355
|
+
"pathogen": "Combined",
|
|
1356
|
+
"demographic_type": "Age Group",
|
|
1357
|
+
"65+ years": "1.6",
|
|
1358
|
+
"18-64 years": "0.8"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"week_end": "2023-05-27",
|
|
1362
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1363
|
+
"pathogen": "COVID-19",
|
|
1364
|
+
"demographic_type": "Age Group",
|
|
1365
|
+
"65+ years": "1.6",
|
|
1366
|
+
"18-64 years": "0.7"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"week_end": "2023-05-27",
|
|
1370
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1371
|
+
"pathogen": "RSV",
|
|
1372
|
+
"demographic_type": "Age Group",
|
|
1373
|
+
"18-64 years": "0.0"
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"week_end": "2023-06-03",
|
|
1377
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1378
|
+
"pathogen": "Influenza",
|
|
1379
|
+
"demographic_type": "Age Group",
|
|
1380
|
+
"65+ years": "0.1"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"week_end": "2023-06-03",
|
|
1384
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1385
|
+
"pathogen": "Combined",
|
|
1386
|
+
"demographic_type": "Age Group",
|
|
1387
|
+
"65+ years": "1.5",
|
|
1388
|
+
"18-64 years": "0.7"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"week_end": "2023-06-03",
|
|
1392
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1393
|
+
"pathogen": "COVID-19",
|
|
1394
|
+
"demographic_type": "Age Group",
|
|
1395
|
+
"65+ years": "1.4",
|
|
1396
|
+
"18-64 years": "0.7"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"week_end": "2023-06-03",
|
|
1400
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1401
|
+
"pathogen": "RSV",
|
|
1402
|
+
"demographic_type": "Age Group",
|
|
1403
|
+
"18-64 years": "0.0"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"week_end": "2023-06-10",
|
|
1407
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1408
|
+
"pathogen": "RSV",
|
|
1409
|
+
"demographic_type": "Age Group",
|
|
1410
|
+
"65+ years": "0.0",
|
|
1411
|
+
"0-17 years": "0.0"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"week_end": "2023-06-10",
|
|
1415
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1416
|
+
"pathogen": "Influenza",
|
|
1417
|
+
"demographic_type": "Age Group",
|
|
1418
|
+
"65+ years": "0.0"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"week_end": "2023-06-10",
|
|
1422
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1423
|
+
"pathogen": "Combined",
|
|
1424
|
+
"demographic_type": "Age Group",
|
|
1425
|
+
"65+ years": "1.4",
|
|
1426
|
+
"18-64 years": "0.7"
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"week_end": "2023-06-10",
|
|
1430
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1431
|
+
"pathogen": "COVID-19",
|
|
1432
|
+
"demographic_type": "Age Group",
|
|
1433
|
+
"65+ years": "1.3",
|
|
1434
|
+
"18-64 years": "0.7"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"week_end": "2023-06-17",
|
|
1438
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1439
|
+
"pathogen": "Influenza",
|
|
1440
|
+
"demographic_type": "Age Group",
|
|
1441
|
+
"65+ years": "0.1"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"week_end": "2023-06-17",
|
|
1445
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1446
|
+
"pathogen": "Combined",
|
|
1447
|
+
"demographic_type": "Age Group",
|
|
1448
|
+
"65+ years": "1.4",
|
|
1449
|
+
"18-64 years": "0.5"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"week_end": "2023-06-17",
|
|
1453
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1454
|
+
"pathogen": "COVID-19",
|
|
1455
|
+
"demographic_type": "Age Group",
|
|
1456
|
+
"65+ years": "1.3",
|
|
1457
|
+
"18-64 years": "0.5"
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
"week_end": "2023-06-17",
|
|
1461
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1462
|
+
"pathogen": "RSV",
|
|
1463
|
+
"demographic_type": "Age Group",
|
|
1464
|
+
"18-64 years": "0.0",
|
|
1465
|
+
"0-17 years": "0.0"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"week_end": "2023-06-24",
|
|
1469
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1470
|
+
"pathogen": "COVID-19",
|
|
1471
|
+
"demographic_type": "Age Group",
|
|
1472
|
+
"0-17 years": "0.0",
|
|
1473
|
+
"65+ years": "1.3",
|
|
1474
|
+
"18-64 years": "0.4"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"week_end": "2023-06-24",
|
|
1478
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1479
|
+
"pathogen": "Influenza",
|
|
1480
|
+
"demographic_type": "Age Group",
|
|
1481
|
+
"65+ years": "0.1"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"week_end": "2023-06-24",
|
|
1485
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1486
|
+
"pathogen": "Combined",
|
|
1487
|
+
"demographic_type": "Age Group",
|
|
1488
|
+
"65+ years": "1.3",
|
|
1489
|
+
"18-64 years": "0.5"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"week_end": "2023-06-24",
|
|
1493
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1494
|
+
"pathogen": "RSV",
|
|
1495
|
+
"demographic_type": "Age Group",
|
|
1496
|
+
"18-64 years": "0.0",
|
|
1497
|
+
"0-17 years": "0.0"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"week_end": "2023-07-01",
|
|
1501
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1502
|
+
"pathogen": "Influenza",
|
|
1503
|
+
"demographic_type": "Age Group",
|
|
1504
|
+
"65+ years": "0.0"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"week_end": "2023-07-01",
|
|
1508
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1509
|
+
"pathogen": "Combined",
|
|
1510
|
+
"demographic_type": "Age Group",
|
|
1511
|
+
"65+ years": "1.2",
|
|
1512
|
+
"18-64 years": "0.5"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"week_end": "2023-07-01",
|
|
1516
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1517
|
+
"pathogen": "COVID-19",
|
|
1518
|
+
"demographic_type": "Age Group",
|
|
1519
|
+
"65+ years": "1.2",
|
|
1520
|
+
"18-64 years": "0.5"
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
"week_end": "2023-07-01",
|
|
1524
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1525
|
+
"pathogen": "RSV",
|
|
1526
|
+
"demographic_type": "Age Group",
|
|
1527
|
+
"18-64 years": "0.0",
|
|
1528
|
+
"0-17 years": "0.0"
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"week_end": "2023-07-08",
|
|
1532
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1533
|
+
"pathogen": "COVID-19",
|
|
1534
|
+
"demographic_type": "Age Group",
|
|
1535
|
+
"0-17 years": "0.0",
|
|
1536
|
+
"65+ years": "1.0",
|
|
1537
|
+
"18-64 years": "0.4"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"week_end": "2023-07-08",
|
|
1541
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1542
|
+
"pathogen": "RSV",
|
|
1543
|
+
"demographic_type": "Age Group",
|
|
1544
|
+
"65+ years": "0.0",
|
|
1545
|
+
"18-64 years": "0.0",
|
|
1546
|
+
"0-17 years": "0.0"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"week_end": "2023-07-08",
|
|
1550
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1551
|
+
"pathogen": "Influenza",
|
|
1552
|
+
"demographic_type": "Age Group",
|
|
1553
|
+
"65+ years": "0.1"
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"week_end": "2023-07-08",
|
|
1557
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1558
|
+
"pathogen": "Combined",
|
|
1559
|
+
"demographic_type": "Age Group",
|
|
1560
|
+
"65+ years": "1.1",
|
|
1561
|
+
"18-64 years": "0.5"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"week_end": "2023-07-15",
|
|
1565
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1566
|
+
"pathogen": "RSV",
|
|
1567
|
+
"demographic_type": "Age Group",
|
|
1568
|
+
"65+ years": "0.0",
|
|
1569
|
+
"18-64 years": "0.0",
|
|
1570
|
+
"0-17 years": "0.0"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"week_end": "2023-07-15",
|
|
1574
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1575
|
+
"pathogen": "Influenza",
|
|
1576
|
+
"demographic_type": "Age Group",
|
|
1577
|
+
"65+ years": "0.0"
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"week_end": "2023-07-15",
|
|
1581
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1582
|
+
"pathogen": "Combined",
|
|
1583
|
+
"demographic_type": "Age Group",
|
|
1584
|
+
"65+ years": "1.1",
|
|
1585
|
+
"18-64 years": "0.6"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"week_end": "2023-07-15",
|
|
1589
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1590
|
+
"pathogen": "COVID-19",
|
|
1591
|
+
"demographic_type": "Age Group",
|
|
1592
|
+
"65+ years": "1.1",
|
|
1593
|
+
"18-64 years": "0.5"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"week_end": "2023-07-22",
|
|
1597
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1598
|
+
"pathogen": "COVID-19",
|
|
1599
|
+
"demographic_type": "Age Group",
|
|
1600
|
+
"0-17 years": "0.0",
|
|
1601
|
+
"65+ years": "1.2",
|
|
1602
|
+
"18-64 years": "0.5"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"week_end": "2023-07-22",
|
|
1606
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1607
|
+
"pathogen": "Influenza",
|
|
1608
|
+
"demographic_type": "Age Group",
|
|
1609
|
+
"65+ years": "0.0",
|
|
1610
|
+
"0-17 years": "0.0"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"week_end": "2023-07-22",
|
|
1614
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1615
|
+
"pathogen": "Combined",
|
|
1616
|
+
"demographic_type": "Age Group",
|
|
1617
|
+
"0-17 years": "0.0",
|
|
1618
|
+
"65+ years": "1.2",
|
|
1619
|
+
"18-64 years": "0.5"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"week_end": "2023-07-22",
|
|
1623
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1624
|
+
"pathogen": "RSV",
|
|
1625
|
+
"demographic_type": "Age Group",
|
|
1626
|
+
"18-64 years": "0.0",
|
|
1627
|
+
"0-17 years": "0.0"
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"week_end": "2023-07-29",
|
|
1631
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1632
|
+
"pathogen": "RSV",
|
|
1633
|
+
"demographic_type": "Age Group",
|
|
1634
|
+
"65+ years": "0.0",
|
|
1635
|
+
"18-64 years": "0.0",
|
|
1636
|
+
"0-17 years": "0.0"
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
"week_end": "2023-07-29",
|
|
1640
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1641
|
+
"pathogen": "Influenza",
|
|
1642
|
+
"demographic_type": "Age Group",
|
|
1643
|
+
"0-17 years": "0.0"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"week_end": "2023-07-29",
|
|
1647
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1648
|
+
"pathogen": "Combined",
|
|
1649
|
+
"demographic_type": "Age Group",
|
|
1650
|
+
"65+ years": "1.2",
|
|
1651
|
+
"18-64 years": "0.4"
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"week_end": "2023-07-29",
|
|
1655
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1656
|
+
"pathogen": "COVID-19",
|
|
1657
|
+
"demographic_type": "Age Group",
|
|
1658
|
+
"65+ years": "1.2",
|
|
1659
|
+
"18-64 years": "0.4"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"week_end": "2023-08-05",
|
|
1663
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1664
|
+
"pathogen": "RSV",
|
|
1665
|
+
"demographic_type": "Age Group",
|
|
1666
|
+
"65+ years": "0.0",
|
|
1667
|
+
"18-64 years": "0.0",
|
|
1668
|
+
"0-17 years": "0.0"
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"week_end": "2023-08-05",
|
|
1672
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1673
|
+
"pathogen": "Influenza",
|
|
1674
|
+
"demographic_type": "Age Group",
|
|
1675
|
+
"65+ years": "0.0",
|
|
1676
|
+
"0-17 years": "0.0"
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
"week_end": "2023-08-05",
|
|
1680
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1681
|
+
"pathogen": "Combined",
|
|
1682
|
+
"demographic_type": "Age Group",
|
|
1683
|
+
"65+ years": "1.5",
|
|
1684
|
+
"18-64 years": "0.5"
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
"week_end": "2023-08-05",
|
|
1688
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1689
|
+
"pathogen": "COVID-19",
|
|
1690
|
+
"demographic_type": "Age Group",
|
|
1691
|
+
"65+ years": "1.5",
|
|
1692
|
+
"18-64 years": "0.4"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
"week_end": "2023-08-12",
|
|
1696
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1697
|
+
"pathogen": "Influenza",
|
|
1698
|
+
"demographic_type": "Age Group",
|
|
1699
|
+
"65+ years": "0.0",
|
|
1700
|
+
"0-17 years": "0.0"
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
"week_end": "2023-08-12",
|
|
1704
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1705
|
+
"pathogen": "Combined",
|
|
1706
|
+
"demographic_type": "Age Group",
|
|
1707
|
+
"65+ years": "1.6",
|
|
1708
|
+
"18-64 years": "0.8"
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"week_end": "2023-08-12",
|
|
1712
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1713
|
+
"pathogen": "COVID-19",
|
|
1714
|
+
"demographic_type": "Age Group",
|
|
1715
|
+
"65+ years": "1.5",
|
|
1716
|
+
"18-64 years": "0.7"
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"week_end": "2023-08-12",
|
|
1720
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1721
|
+
"pathogen": "RSV",
|
|
1722
|
+
"demographic_type": "Age Group",
|
|
1723
|
+
"18-64 years": "0.0",
|
|
1724
|
+
"0-17 years": "0.0"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"week_end": "2023-08-19",
|
|
1728
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1729
|
+
"pathogen": "RSV",
|
|
1730
|
+
"demographic_type": "Age Group",
|
|
1731
|
+
"65+ years": "0.0",
|
|
1732
|
+
"0-17 years": "0.0"
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"week_end": "2023-08-19",
|
|
1736
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1737
|
+
"pathogen": "Influenza",
|
|
1738
|
+
"demographic_type": "Age Group",
|
|
1739
|
+
"65+ years": "0.0",
|
|
1740
|
+
"0-17 years": "0.0"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"week_end": "2023-08-19",
|
|
1744
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1745
|
+
"pathogen": "Combined",
|
|
1746
|
+
"demographic_type": "Age Group",
|
|
1747
|
+
"65+ years": "1.9",
|
|
1748
|
+
"18-64 years": "0.9"
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"week_end": "2023-08-19",
|
|
1752
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1753
|
+
"pathogen": "COVID-19",
|
|
1754
|
+
"demographic_type": "Age Group",
|
|
1755
|
+
"65+ years": "1.9",
|
|
1756
|
+
"18-64 years": "0.8"
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
"week_end": "2023-08-26",
|
|
1760
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1761
|
+
"pathogen": "RSV",
|
|
1762
|
+
"demographic_type": "Age Group",
|
|
1763
|
+
"65+ years": "0.0",
|
|
1764
|
+
"18-64 years": "0.0",
|
|
1765
|
+
"0-17 years": "0.0"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"week_end": "2023-08-26",
|
|
1769
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1770
|
+
"pathogen": "Influenza",
|
|
1771
|
+
"demographic_type": "Age Group",
|
|
1772
|
+
"65+ years": "0.0",
|
|
1773
|
+
"0-17 years": "0.0"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"week_end": "2023-08-26",
|
|
1777
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1778
|
+
"pathogen": "Combined",
|
|
1779
|
+
"demographic_type": "Age Group",
|
|
1780
|
+
"65+ years": "2.3",
|
|
1781
|
+
"18-64 years": "0.9"
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"week_end": "2023-08-26",
|
|
1785
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1786
|
+
"pathogen": "COVID-19",
|
|
1787
|
+
"demographic_type": "Age Group",
|
|
1788
|
+
"65+ years": "2.2",
|
|
1789
|
+
"18-64 years": "0.9"
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"week_end": "2023-09-02",
|
|
1793
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1794
|
+
"pathogen": "Influenza",
|
|
1795
|
+
"demographic_type": "Age Group",
|
|
1796
|
+
"65+ years": "0.0",
|
|
1797
|
+
"0-17 years": "0.0"
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"week_end": "2023-09-02",
|
|
1801
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1802
|
+
"pathogen": "Combined",
|
|
1803
|
+
"demographic_type": "Age Group",
|
|
1804
|
+
"65+ years": "2.5",
|
|
1805
|
+
"18-64 years": "0.9"
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"week_end": "2023-09-02",
|
|
1809
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1810
|
+
"pathogen": "COVID-19",
|
|
1811
|
+
"demographic_type": "Age Group",
|
|
1812
|
+
"65+ years": "2.5",
|
|
1813
|
+
"18-64 years": "0.9"
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"week_end": "2023-09-02",
|
|
1817
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1818
|
+
"pathogen": "RSV",
|
|
1819
|
+
"demographic_type": "Age Group",
|
|
1820
|
+
"18-64 years": "0.0",
|
|
1821
|
+
"0-17 years": "0.0"
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
"week_end": "2023-09-09",
|
|
1825
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1826
|
+
"pathogen": "Influenza",
|
|
1827
|
+
"demographic_type": "Age Group",
|
|
1828
|
+
"65+ years": "0.1",
|
|
1829
|
+
"0-17 years": "0.0"
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"week_end": "2023-09-09",
|
|
1833
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1834
|
+
"pathogen": "Combined",
|
|
1835
|
+
"demographic_type": "Age Group",
|
|
1836
|
+
"65+ years": "2.7",
|
|
1837
|
+
"18-64 years": "1.2"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"week_end": "2023-09-09",
|
|
1841
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1842
|
+
"pathogen": "COVID-19",
|
|
1843
|
+
"demographic_type": "Age Group",
|
|
1844
|
+
"65+ years": "2.7",
|
|
1845
|
+
"18-64 years": "1.1"
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
"week_end": "2023-09-09",
|
|
1849
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1850
|
+
"pathogen": "RSV",
|
|
1851
|
+
"demographic_type": "Age Group",
|
|
1852
|
+
"0-17 years": "0.0"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"week_end": "2023-09-16",
|
|
1856
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1857
|
+
"pathogen": "Influenza",
|
|
1858
|
+
"demographic_type": "Age Group",
|
|
1859
|
+
"65+ years": "0.1",
|
|
1860
|
+
"18-64 years": "0.1"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"week_end": "2023-09-16",
|
|
1864
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1865
|
+
"pathogen": "Combined",
|
|
1866
|
+
"demographic_type": "Age Group",
|
|
1867
|
+
"65+ years": "3.0",
|
|
1868
|
+
"18-64 years": "1.2"
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
"week_end": "2023-09-16",
|
|
1872
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1873
|
+
"pathogen": "COVID-19",
|
|
1874
|
+
"demographic_type": "Age Group",
|
|
1875
|
+
"65+ years": "2.9",
|
|
1876
|
+
"18-64 years": "1.1"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"week_end": "2023-09-16",
|
|
1880
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1881
|
+
"pathogen": "RSV",
|
|
1882
|
+
"demographic_type": "Age Group",
|
|
1883
|
+
"18-64 years": "0.0",
|
|
1884
|
+
"0-17 years": "0.0"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"week_end": "2023-09-23",
|
|
1888
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1889
|
+
"pathogen": "Influenza",
|
|
1890
|
+
"demographic_type": "Age Group",
|
|
1891
|
+
"65+ years": "0.0"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"week_end": "2023-09-23",
|
|
1895
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1896
|
+
"pathogen": "Combined",
|
|
1897
|
+
"demographic_type": "Age Group",
|
|
1898
|
+
"65+ years": "3.0",
|
|
1899
|
+
"18-64 years": "1.3"
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"week_end": "2023-09-23",
|
|
1903
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1904
|
+
"pathogen": "COVID-19",
|
|
1905
|
+
"demographic_type": "Age Group",
|
|
1906
|
+
"65+ years": "2.9",
|
|
1907
|
+
"18-64 years": "1.2"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"week_end": "2023-09-23",
|
|
1911
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1912
|
+
"pathogen": "RSV",
|
|
1913
|
+
"demographic_type": "Age Group",
|
|
1914
|
+
"18-64 years": "0.0",
|
|
1915
|
+
"0-17 years": "0.0"
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"week_end": "2023-09-30",
|
|
1919
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1920
|
+
"pathogen": "Influenza",
|
|
1921
|
+
"demographic_type": "Age Group",
|
|
1922
|
+
"65+ years": "0.0",
|
|
1923
|
+
"0-17 years": "0.0"
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"week_end": "2023-09-30",
|
|
1927
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1928
|
+
"pathogen": "Combined",
|
|
1929
|
+
"demographic_type": "Age Group",
|
|
1930
|
+
"65+ years": "3.1",
|
|
1931
|
+
"18-64 years": "1.3"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"week_end": "2023-09-30",
|
|
1935
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1936
|
+
"pathogen": "COVID-19",
|
|
1937
|
+
"demographic_type": "Age Group",
|
|
1938
|
+
"65+ years": "3.0",
|
|
1939
|
+
"18-64 years": "1.2"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"week_end": "2023-09-30",
|
|
1943
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1944
|
+
"pathogen": "RSV",
|
|
1945
|
+
"demographic_type": "Age Group",
|
|
1946
|
+
"18-64 years": "0.0",
|
|
1947
|
+
"0-17 years": "0.0"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"week_end": "2023-10-07",
|
|
1951
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1952
|
+
"pathogen": "COVID-19",
|
|
1953
|
+
"demographic_type": "Age Group",
|
|
1954
|
+
"0-17 years": "0.0",
|
|
1955
|
+
"65+ years": "2.8",
|
|
1956
|
+
"18-64 years": "1.1"
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"week_end": "2023-10-07",
|
|
1960
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1961
|
+
"pathogen": "RSV",
|
|
1962
|
+
"demographic_type": "Age Group",
|
|
1963
|
+
"65+ years": "0.0",
|
|
1964
|
+
"18-64 years": "0.0",
|
|
1965
|
+
"0-17 years": "0.0"
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"week_end": "2023-10-07",
|
|
1969
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1970
|
+
"pathogen": "Influenza",
|
|
1971
|
+
"demographic_type": "Age Group",
|
|
1972
|
+
"65+ years": "0.0",
|
|
1973
|
+
"0-17 years": "0.0"
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"week_end": "2023-10-07",
|
|
1977
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1978
|
+
"pathogen": "Combined",
|
|
1979
|
+
"demographic_type": "Age Group",
|
|
1980
|
+
"0-17 years": "0.0",
|
|
1981
|
+
"65+ years": "2.8",
|
|
1982
|
+
"18-64 years": "1.2"
|
|
1983
|
+
}
|
|
1984
|
+
],
|
|
1985
|
+
"dataFileName": "https://www.cdc.gov/wcms/vizdata/live/Respitory_Viruses/RVRMortalityWithDemographic(Age).json",
|
|
1986
|
+
"dataFileSourceType": "url",
|
|
1987
|
+
"formattedData": [
|
|
1988
|
+
{
|
|
1989
|
+
"week_end": "2022-10-01",
|
|
1990
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
1991
|
+
"pathogen": "COVID-19",
|
|
1992
|
+
"demographic_type": "Age Group",
|
|
1993
|
+
"0-17 years": "1.9",
|
|
1994
|
+
"65+ years": "4.7",
|
|
1995
|
+
"18-64 years": "2.2"
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"week_end": "2022-10-01",
|
|
1999
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2000
|
+
"pathogen": "Influenza",
|
|
2001
|
+
"demographic_type": "Age Group",
|
|
2002
|
+
"65+ years": "0.0",
|
|
2003
|
+
"0-17 years": "0.0"
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
"week_end": "2022-10-01",
|
|
2007
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2008
|
+
"pathogen": "Combined",
|
|
2009
|
+
"demographic_type": "Age Group",
|
|
2010
|
+
"0-17 years": "2.2",
|
|
2011
|
+
"65+ years": "4.8",
|
|
2012
|
+
"18-64 years": "2.2"
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
"week_end": "2022-10-08",
|
|
2016
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2017
|
+
"pathogen": "Influenza",
|
|
2018
|
+
"demographic_type": "Age Group",
|
|
2019
|
+
"65+ years": "0.0"
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
"week_end": "2022-10-08",
|
|
2023
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2024
|
+
"pathogen": "Combined",
|
|
2025
|
+
"demographic_type": "Age Group",
|
|
2026
|
+
"0-17 years": "2.2",
|
|
2027
|
+
"65+ years": "4.3",
|
|
2028
|
+
"18-64 years": "2.1"
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"week_end": "2022-10-08",
|
|
2032
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2033
|
+
"pathogen": "COVID-19",
|
|
2034
|
+
"demographic_type": "Age Group",
|
|
2035
|
+
"65+ years": "4.2",
|
|
2036
|
+
"18-64 years": "2.1"
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"week_end": "2022-10-15",
|
|
2040
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2041
|
+
"pathogen": "Influenza",
|
|
2042
|
+
"demographic_type": "Age Group",
|
|
2043
|
+
"65+ years": "0.1",
|
|
2044
|
+
"18-64 years": "0.1"
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
"week_end": "2022-10-15",
|
|
2048
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2049
|
+
"pathogen": "Combined",
|
|
2050
|
+
"demographic_type": "Age Group",
|
|
2051
|
+
"0-17 years": "1.5",
|
|
2052
|
+
"65+ years": "4.3",
|
|
2053
|
+
"18-64 years": "2.1"
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"week_end": "2022-10-15",
|
|
2057
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2058
|
+
"pathogen": "COVID-19",
|
|
2059
|
+
"demographic_type": "Age Group",
|
|
2060
|
+
"65+ years": "4.2",
|
|
2061
|
+
"18-64 years": "2.0"
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"week_end": "2022-10-22",
|
|
2065
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2066
|
+
"pathogen": "COVID-19",
|
|
2067
|
+
"demographic_type": "Age Group",
|
|
2068
|
+
"0-17 years": "1.9",
|
|
2069
|
+
"65+ years": "4.2",
|
|
2070
|
+
"18-64 years": "2.1"
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
"week_end": "2022-10-22",
|
|
2074
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2075
|
+
"pathogen": "RSV",
|
|
2076
|
+
"demographic_type": "Age Group",
|
|
2077
|
+
"65+ years": "0.0"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"week_end": "2022-10-22",
|
|
2081
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2082
|
+
"pathogen": "Influenza",
|
|
2083
|
+
"demographic_type": "Age Group",
|
|
2084
|
+
"65+ years": "0.1",
|
|
2085
|
+
"18-64 years": "0.1"
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"week_end": "2022-10-22",
|
|
2089
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2090
|
+
"pathogen": "Combined",
|
|
2091
|
+
"demographic_type": "Age Group",
|
|
2092
|
+
"0-17 years": "2.9",
|
|
2093
|
+
"65+ years": "4.3",
|
|
2094
|
+
"18-64 years": "2.3"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"week_end": "2022-10-29",
|
|
2098
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2099
|
+
"pathogen": "Influenza",
|
|
2100
|
+
"demographic_type": "Age Group",
|
|
2101
|
+
"65+ years": "0.1",
|
|
2102
|
+
"18-64 years": "0.2"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"week_end": "2022-10-29",
|
|
2106
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2107
|
+
"pathogen": "Combined",
|
|
2108
|
+
"demographic_type": "Age Group",
|
|
2109
|
+
"0-17 years": "2.5",
|
|
2110
|
+
"65+ years": "4.5",
|
|
2111
|
+
"18-64 years": "2.2"
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
"week_end": "2022-10-29",
|
|
2115
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2116
|
+
"pathogen": "COVID-19",
|
|
2117
|
+
"demographic_type": "Age Group",
|
|
2118
|
+
"65+ years": "4.3",
|
|
2119
|
+
"18-64 years": "2.0"
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"week_end": "2022-11-05",
|
|
2123
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2124
|
+
"pathogen": "RSV",
|
|
2125
|
+
"demographic_type": "Age Group",
|
|
2126
|
+
"65+ years": "0.0",
|
|
2127
|
+
"18-64 years": "0.0"
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
"week_end": "2022-11-05",
|
|
2131
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2132
|
+
"pathogen": "Influenza",
|
|
2133
|
+
"demographic_type": "Age Group",
|
|
2134
|
+
"65+ years": "0.2",
|
|
2135
|
+
"0-17 years": "1.3",
|
|
2136
|
+
"18-64 years": "0.3"
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"week_end": "2022-11-05",
|
|
2140
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2141
|
+
"pathogen": "Combined",
|
|
2142
|
+
"demographic_type": "Age Group",
|
|
2143
|
+
"0-17 years": "2.9",
|
|
2144
|
+
"65+ years": "4.5",
|
|
2145
|
+
"18-64 years": "2.2"
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
"week_end": "2022-11-05",
|
|
2149
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2150
|
+
"pathogen": "COVID-19",
|
|
2151
|
+
"demographic_type": "Age Group",
|
|
2152
|
+
"65+ years": "4.3",
|
|
2153
|
+
"18-64 years": "2.0"
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"week_end": "2022-11-12",
|
|
2157
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2158
|
+
"pathogen": "RSV",
|
|
2159
|
+
"demographic_type": "Age Group",
|
|
2160
|
+
"65+ years": "0.1"
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
"week_end": "2022-11-12",
|
|
2164
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2165
|
+
"pathogen": "Influenza",
|
|
2166
|
+
"demographic_type": "Age Group",
|
|
2167
|
+
"65+ years": "0.3",
|
|
2168
|
+
"0-17 years": "1.5",
|
|
2169
|
+
"18-64 years": "0.6"
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"week_end": "2022-11-12",
|
|
2173
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2174
|
+
"pathogen": "Combined",
|
|
2175
|
+
"demographic_type": "Age Group",
|
|
2176
|
+
"0-17 years": "2.9",
|
|
2177
|
+
"65+ years": "4.5",
|
|
2178
|
+
"18-64 years": "2.6"
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"week_end": "2022-11-12",
|
|
2182
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2183
|
+
"pathogen": "COVID-19",
|
|
2184
|
+
"demographic_type": "Age Group",
|
|
2185
|
+
"65+ years": "4.2",
|
|
2186
|
+
"18-64 years": "2.0"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"week_end": "2022-11-19",
|
|
2190
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2191
|
+
"pathogen": "RSV",
|
|
2192
|
+
"demographic_type": "Age Group",
|
|
2193
|
+
"65+ years": "0.0"
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"week_end": "2022-11-19",
|
|
2197
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2198
|
+
"pathogen": "Influenza",
|
|
2199
|
+
"demographic_type": "Age Group",
|
|
2200
|
+
"65+ years": "0.4",
|
|
2201
|
+
"0-17 years": "1.6",
|
|
2202
|
+
"18-64 years": "0.5"
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"week_end": "2022-11-19",
|
|
2206
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2207
|
+
"pathogen": "Combined",
|
|
2208
|
+
"demographic_type": "Age Group",
|
|
2209
|
+
"0-17 years": "3.1",
|
|
2210
|
+
"65+ years": "4.7",
|
|
2211
|
+
"18-64 years": "2.4"
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
"week_end": "2022-11-19",
|
|
2215
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2216
|
+
"pathogen": "COVID-19",
|
|
2217
|
+
"demographic_type": "Age Group",
|
|
2218
|
+
"65+ years": "4.3",
|
|
2219
|
+
"18-64 years": "1.9"
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"week_end": "2022-11-26",
|
|
2223
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2224
|
+
"pathogen": "RSV",
|
|
2225
|
+
"demographic_type": "Age Group",
|
|
2226
|
+
"65+ years": "0.1"
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
"week_end": "2022-11-26",
|
|
2230
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2231
|
+
"pathogen": "Influenza",
|
|
2232
|
+
"demographic_type": "Age Group",
|
|
2233
|
+
"65+ years": "0.6",
|
|
2234
|
+
"0-17 years": "2.8",
|
|
2235
|
+
"18-64 years": "0.8"
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"week_end": "2022-11-26",
|
|
2239
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2240
|
+
"pathogen": "Combined",
|
|
2241
|
+
"demographic_type": "Age Group",
|
|
2242
|
+
"0-17 years": "4.6",
|
|
2243
|
+
"65+ years": "5.1",
|
|
2244
|
+
"18-64 years": "2.9"
|
|
2245
|
+
},
|
|
2246
|
+
{
|
|
2247
|
+
"week_end": "2022-11-26",
|
|
2248
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2249
|
+
"pathogen": "COVID-19",
|
|
2250
|
+
"demographic_type": "Age Group",
|
|
2251
|
+
"65+ years": "4.5",
|
|
2252
|
+
"18-64 years": "2.1"
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
"week_end": "2022-12-03",
|
|
2256
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2257
|
+
"pathogen": "RSV",
|
|
2258
|
+
"demographic_type": "Age Group",
|
|
2259
|
+
"65+ years": "0.1"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"week_end": "2022-12-03",
|
|
2263
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2264
|
+
"pathogen": "Influenza",
|
|
2265
|
+
"demographic_type": "Age Group",
|
|
2266
|
+
"65+ years": "1.1",
|
|
2267
|
+
"0-17 years": "3.5",
|
|
2268
|
+
"18-64 years": "1.6"
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"week_end": "2022-12-03",
|
|
2272
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2273
|
+
"pathogen": "Combined",
|
|
2274
|
+
"demographic_type": "Age Group",
|
|
2275
|
+
"0-17 years": "5.2",
|
|
2276
|
+
"65+ years": "5.8",
|
|
2277
|
+
"18-64 years": "3.6"
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"week_end": "2022-12-03",
|
|
2281
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2282
|
+
"pathogen": "COVID-19",
|
|
2283
|
+
"demographic_type": "Age Group",
|
|
2284
|
+
"65+ years": "4.6",
|
|
2285
|
+
"18-64 years": "2.0"
|
|
2286
|
+
},
|
|
2287
|
+
{
|
|
2288
|
+
"week_end": "2022-12-10",
|
|
2289
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2290
|
+
"pathogen": "RSV",
|
|
2291
|
+
"demographic_type": "Age Group",
|
|
2292
|
+
"65+ years": "0.1",
|
|
2293
|
+
"18-64 years": "0.1"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"week_end": "2022-12-10",
|
|
2297
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2298
|
+
"pathogen": "Influenza",
|
|
2299
|
+
"demographic_type": "Age Group",
|
|
2300
|
+
"65+ years": "1.4",
|
|
2301
|
+
"0-17 years": "2.3",
|
|
2302
|
+
"18-64 years": "1.7"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"week_end": "2022-12-10",
|
|
2306
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2307
|
+
"pathogen": "Combined",
|
|
2308
|
+
"demographic_type": "Age Group",
|
|
2309
|
+
"0-17 years": "3.5",
|
|
2310
|
+
"65+ years": "6.7",
|
|
2311
|
+
"18-64 years": "4.1"
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"week_end": "2022-12-10",
|
|
2315
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2316
|
+
"pathogen": "COVID-19",
|
|
2317
|
+
"demographic_type": "Age Group",
|
|
2318
|
+
"65+ years": "5.3",
|
|
2319
|
+
"18-64 years": "2.4"
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"week_end": "2022-12-17",
|
|
2323
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2324
|
+
"pathogen": "RSV",
|
|
2325
|
+
"demographic_type": "Age Group",
|
|
2326
|
+
"65+ years": "0.1"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"week_end": "2022-12-17",
|
|
2330
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2331
|
+
"pathogen": "Influenza",
|
|
2332
|
+
"demographic_type": "Age Group",
|
|
2333
|
+
"65+ years": "1.5",
|
|
2334
|
+
"0-17 years": "3.2",
|
|
2335
|
+
"18-64 years": "1.5"
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
"week_end": "2022-12-17",
|
|
2339
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2340
|
+
"pathogen": "Combined",
|
|
2341
|
+
"demographic_type": "Age Group",
|
|
2342
|
+
"0-17 years": "4.3",
|
|
2343
|
+
"65+ years": "7.1",
|
|
2344
|
+
"18-64 years": "4.1"
|
|
2345
|
+
},
|
|
2346
|
+
{
|
|
2347
|
+
"week_end": "2022-12-17",
|
|
2348
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2349
|
+
"pathogen": "COVID-19",
|
|
2350
|
+
"demographic_type": "Age Group",
|
|
2351
|
+
"65+ years": "5.6",
|
|
2352
|
+
"18-64 years": "2.6"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
"week_end": "2022-12-24",
|
|
2356
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2357
|
+
"pathogen": "COVID-19",
|
|
2358
|
+
"demographic_type": "Age Group",
|
|
2359
|
+
"0-17 years": "2.0",
|
|
2360
|
+
"65+ years": "5.6",
|
|
2361
|
+
"18-64 years": "2.7"
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"week_end": "2022-12-24",
|
|
2365
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2366
|
+
"pathogen": "RSV",
|
|
2367
|
+
"demographic_type": "Age Group",
|
|
2368
|
+
"65+ years": "0.1"
|
|
2369
|
+
},
|
|
2370
|
+
{
|
|
2371
|
+
"week_end": "2022-12-24",
|
|
2372
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2373
|
+
"pathogen": "Influenza",
|
|
2374
|
+
"demographic_type": "Age Group",
|
|
2375
|
+
"65+ years": "1.3",
|
|
2376
|
+
"0-17 years": "2.3",
|
|
2377
|
+
"18-64 years": "1.4"
|
|
2378
|
+
},
|
|
2379
|
+
{
|
|
2380
|
+
"week_end": "2022-12-24",
|
|
2381
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2382
|
+
"pathogen": "Combined",
|
|
2383
|
+
"demographic_type": "Age Group",
|
|
2384
|
+
"0-17 years": "4.8",
|
|
2385
|
+
"65+ years": "6.9",
|
|
2386
|
+
"18-64 years": "4.2"
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
"week_end": "2022-12-31",
|
|
2390
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2391
|
+
"pathogen": "COVID-19",
|
|
2392
|
+
"demographic_type": "Age Group",
|
|
2393
|
+
"0-17 years": "1.5",
|
|
2394
|
+
"65+ years": "6.0",
|
|
2395
|
+
"18-64 years": "2.9"
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"week_end": "2022-12-31",
|
|
2399
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2400
|
+
"pathogen": "RSV",
|
|
2401
|
+
"demographic_type": "Age Group",
|
|
2402
|
+
"65+ years": "0.1"
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
"week_end": "2022-12-31",
|
|
2406
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2407
|
+
"pathogen": "Influenza",
|
|
2408
|
+
"demographic_type": "Age Group",
|
|
2409
|
+
"65+ years": "1.4",
|
|
2410
|
+
"0-17 years": "1.5",
|
|
2411
|
+
"18-64 years": "1.4"
|
|
2412
|
+
},
|
|
2413
|
+
{
|
|
2414
|
+
"week_end": "2022-12-31",
|
|
2415
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2416
|
+
"pathogen": "Combined",
|
|
2417
|
+
"demographic_type": "Age Group",
|
|
2418
|
+
"0-17 years": "3.7",
|
|
2419
|
+
"65+ years": "7.4",
|
|
2420
|
+
"18-64 years": "4.3"
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
"week_end": "2023-01-07",
|
|
2424
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2425
|
+
"pathogen": "COVID-19",
|
|
2426
|
+
"demographic_type": "Age Group",
|
|
2427
|
+
"0-17 years": "1.7",
|
|
2428
|
+
"65+ years": "6.5",
|
|
2429
|
+
"18-64 years": "3.0"
|
|
2430
|
+
},
|
|
2431
|
+
{
|
|
2432
|
+
"week_end": "2023-01-07",
|
|
2433
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2434
|
+
"pathogen": "RSV",
|
|
2435
|
+
"demographic_type": "Age Group",
|
|
2436
|
+
"65+ years": "0.1"
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
"week_end": "2023-01-07",
|
|
2440
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2441
|
+
"pathogen": "Influenza",
|
|
2442
|
+
"demographic_type": "Age Group",
|
|
2443
|
+
"65+ years": "1.3",
|
|
2444
|
+
"0-17 years": "1.5",
|
|
2445
|
+
"18-64 years": "1.1"
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
"week_end": "2023-01-07",
|
|
2449
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2450
|
+
"pathogen": "Combined",
|
|
2451
|
+
"demographic_type": "Age Group",
|
|
2452
|
+
"0-17 years": "3.8",
|
|
2453
|
+
"65+ years": "7.8",
|
|
2454
|
+
"18-64 years": "4.1"
|
|
2455
|
+
},
|
|
2456
|
+
{
|
|
2457
|
+
"week_end": "2023-01-14",
|
|
2458
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2459
|
+
"pathogen": "COVID-19",
|
|
2460
|
+
"demographic_type": "Age Group",
|
|
2461
|
+
"0-17 years": "1.4",
|
|
2462
|
+
"65+ years": "6.4",
|
|
2463
|
+
"18-64 years": "3.0"
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
"week_end": "2023-01-14",
|
|
2467
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2468
|
+
"pathogen": "RSV",
|
|
2469
|
+
"demographic_type": "Age Group",
|
|
2470
|
+
"65+ years": "0.1"
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
"week_end": "2023-01-14",
|
|
2474
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2475
|
+
"pathogen": "Influenza",
|
|
2476
|
+
"demographic_type": "Age Group",
|
|
2477
|
+
"65+ years": "0.9",
|
|
2478
|
+
"0-17 years": "1.8",
|
|
2479
|
+
"18-64 years": "0.9"
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"week_end": "2023-01-14",
|
|
2483
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2484
|
+
"pathogen": "Combined",
|
|
2485
|
+
"demographic_type": "Age Group",
|
|
2486
|
+
"0-17 years": "3.2",
|
|
2487
|
+
"65+ years": "7.4",
|
|
2488
|
+
"18-64 years": "3.9"
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"week_end": "2023-01-21",
|
|
2492
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2493
|
+
"pathogen": "RSV",
|
|
2494
|
+
"demographic_type": "Age Group",
|
|
2495
|
+
"65+ years": "0.1"
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"week_end": "2023-01-21",
|
|
2499
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2500
|
+
"pathogen": "Influenza",
|
|
2501
|
+
"demographic_type": "Age Group",
|
|
2502
|
+
"65+ years": "0.6",
|
|
2503
|
+
"18-64 years": "0.4"
|
|
2504
|
+
},
|
|
2505
|
+
{
|
|
2506
|
+
"week_end": "2023-01-21",
|
|
2507
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2508
|
+
"pathogen": "Combined",
|
|
2509
|
+
"demographic_type": "Age Group",
|
|
2510
|
+
"0-17 years": "2.1",
|
|
2511
|
+
"65+ years": "6.6",
|
|
2512
|
+
"18-64 years": "3.0"
|
|
2513
|
+
},
|
|
2514
|
+
{
|
|
2515
|
+
"week_end": "2023-01-21",
|
|
2516
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2517
|
+
"pathogen": "COVID-19",
|
|
2518
|
+
"demographic_type": "Age Group",
|
|
2519
|
+
"65+ years": "5.9",
|
|
2520
|
+
"18-64 years": "2.6"
|
|
2521
|
+
},
|
|
2522
|
+
{
|
|
2523
|
+
"week_end": "2023-01-28",
|
|
2524
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2525
|
+
"pathogen": "COVID-19",
|
|
2526
|
+
"demographic_type": "Age Group",
|
|
2527
|
+
"0-17 years": "1.8",
|
|
2528
|
+
"65+ years": "5.4",
|
|
2529
|
+
"18-64 years": "2.5"
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
"week_end": "2023-01-28",
|
|
2533
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2534
|
+
"pathogen": "RSV",
|
|
2535
|
+
"demographic_type": "Age Group",
|
|
2536
|
+
"65+ years": "0.0",
|
|
2537
|
+
"18-64 years": "0.0"
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"week_end": "2023-01-28",
|
|
2541
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2542
|
+
"pathogen": "Influenza",
|
|
2543
|
+
"demographic_type": "Age Group",
|
|
2544
|
+
"65+ years": "0.4",
|
|
2545
|
+
"18-64 years": "0.4"
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"week_end": "2023-01-28",
|
|
2549
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2550
|
+
"pathogen": "Combined",
|
|
2551
|
+
"demographic_type": "Age Group",
|
|
2552
|
+
"0-17 years": "2.9",
|
|
2553
|
+
"65+ years": "5.9",
|
|
2554
|
+
"18-64 years": "2.9"
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
"week_end": "2023-02-04",
|
|
2558
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2559
|
+
"pathogen": "RSV",
|
|
2560
|
+
"demographic_type": "Age Group",
|
|
2561
|
+
"65+ years": "0.0",
|
|
2562
|
+
"0-17 years": "0.0"
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
"week_end": "2023-02-04",
|
|
2566
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2567
|
+
"pathogen": "Influenza",
|
|
2568
|
+
"demographic_type": "Age Group",
|
|
2569
|
+
"65+ years": "0.2",
|
|
2570
|
+
"18-64 years": "0.2"
|
|
2571
|
+
},
|
|
2572
|
+
{
|
|
2573
|
+
"week_end": "2023-02-04",
|
|
2574
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2575
|
+
"pathogen": "Combined",
|
|
2576
|
+
"demographic_type": "Age Group",
|
|
2577
|
+
"65+ years": "5.1",
|
|
2578
|
+
"18-64 years": "2.4"
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"week_end": "2023-02-04",
|
|
2582
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2583
|
+
"pathogen": "COVID-19",
|
|
2584
|
+
"demographic_type": "Age Group",
|
|
2585
|
+
"65+ years": "4.9",
|
|
2586
|
+
"18-64 years": "2.2"
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
"week_end": "2023-02-11",
|
|
2590
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2591
|
+
"pathogen": "RSV",
|
|
2592
|
+
"demographic_type": "Age Group",
|
|
2593
|
+
"65+ years": "0.0",
|
|
2594
|
+
"18-64 years": "0.0",
|
|
2595
|
+
"0-17 years": "0.0"
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"week_end": "2023-02-11",
|
|
2599
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2600
|
+
"pathogen": "Influenza",
|
|
2601
|
+
"demographic_type": "Age Group",
|
|
2602
|
+
"65+ years": "0.2",
|
|
2603
|
+
"18-64 years": "0.1"
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
"week_end": "2023-02-11",
|
|
2607
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2608
|
+
"pathogen": "Combined",
|
|
2609
|
+
"demographic_type": "Age Group",
|
|
2610
|
+
"65+ years": "4.6",
|
|
2611
|
+
"18-64 years": "2.0"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"week_end": "2023-02-11",
|
|
2615
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2616
|
+
"pathogen": "COVID-19",
|
|
2617
|
+
"demographic_type": "Age Group",
|
|
2618
|
+
"65+ years": "4.4",
|
|
2619
|
+
"18-64 years": "1.9"
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"week_end": "2023-02-18",
|
|
2623
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2624
|
+
"pathogen": "Influenza",
|
|
2625
|
+
"demographic_type": "Age Group",
|
|
2626
|
+
"65+ years": "0.2",
|
|
2627
|
+
"18-64 years": "0.1"
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"week_end": "2023-02-18",
|
|
2631
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2632
|
+
"pathogen": "Combined",
|
|
2633
|
+
"demographic_type": "Age Group",
|
|
2634
|
+
"0-17 years": "1.8",
|
|
2635
|
+
"65+ years": "4.1",
|
|
2636
|
+
"18-64 years": "2.0"
|
|
2637
|
+
},
|
|
2638
|
+
{
|
|
2639
|
+
"week_end": "2023-02-18",
|
|
2640
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2641
|
+
"pathogen": "COVID-19",
|
|
2642
|
+
"demographic_type": "Age Group",
|
|
2643
|
+
"65+ years": "3.9",
|
|
2644
|
+
"18-64 years": "1.9"
|
|
2645
|
+
},
|
|
2646
|
+
{
|
|
2647
|
+
"week_end": "2023-02-18",
|
|
2648
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2649
|
+
"pathogen": "RSV",
|
|
2650
|
+
"demographic_type": "Age Group",
|
|
2651
|
+
"18-64 years": "0.0",
|
|
2652
|
+
"0-17 years": "0.0"
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
"week_end": "2023-02-25",
|
|
2656
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2657
|
+
"pathogen": "Influenza",
|
|
2658
|
+
"demographic_type": "Age Group",
|
|
2659
|
+
"65+ years": "0.1",
|
|
2660
|
+
"18-64 years": "0.1"
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
"week_end": "2023-02-25",
|
|
2664
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2665
|
+
"pathogen": "Combined",
|
|
2666
|
+
"demographic_type": "Age Group",
|
|
2667
|
+
"0-17 years": "1.6",
|
|
2668
|
+
"65+ years": "4.2",
|
|
2669
|
+
"18-64 years": "2.0"
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
"week_end": "2023-02-25",
|
|
2673
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2674
|
+
"pathogen": "COVID-19",
|
|
2675
|
+
"demographic_type": "Age Group",
|
|
2676
|
+
"65+ years": "4.0",
|
|
2677
|
+
"18-64 years": "1.9"
|
|
2678
|
+
},
|
|
2679
|
+
{
|
|
2680
|
+
"week_end": "2023-02-25",
|
|
2681
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2682
|
+
"pathogen": "RSV",
|
|
2683
|
+
"demographic_type": "Age Group",
|
|
2684
|
+
"0-17 years": "0.0"
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
"week_end": "2023-03-04",
|
|
2688
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2689
|
+
"pathogen": "Influenza",
|
|
2690
|
+
"demographic_type": "Age Group",
|
|
2691
|
+
"65+ years": "0.1",
|
|
2692
|
+
"18-64 years": "0.1"
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
"week_end": "2023-03-04",
|
|
2696
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2697
|
+
"pathogen": "Combined",
|
|
2698
|
+
"demographic_type": "Age Group",
|
|
2699
|
+
"0-17 years": "1.6",
|
|
2700
|
+
"65+ years": "3.9",
|
|
2701
|
+
"18-64 years": "1.8"
|
|
2702
|
+
},
|
|
2703
|
+
{
|
|
2704
|
+
"week_end": "2023-03-04",
|
|
2705
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2706
|
+
"pathogen": "COVID-19",
|
|
2707
|
+
"demographic_type": "Age Group",
|
|
2708
|
+
"65+ years": "3.8",
|
|
2709
|
+
"18-64 years": "1.7"
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"week_end": "2023-03-04",
|
|
2713
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2714
|
+
"pathogen": "RSV",
|
|
2715
|
+
"demographic_type": "Age Group",
|
|
2716
|
+
"18-64 years": "0.0",
|
|
2717
|
+
"0-17 years": "0.0"
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
"week_end": "2023-03-11",
|
|
2721
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2722
|
+
"pathogen": "Influenza",
|
|
2723
|
+
"demographic_type": "Age Group",
|
|
2724
|
+
"65+ years": "0.1",
|
|
2725
|
+
"0-17 years": "0.0",
|
|
2726
|
+
"18-64 years": "0.1"
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
"week_end": "2023-03-11",
|
|
2730
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2731
|
+
"pathogen": "Combined",
|
|
2732
|
+
"demographic_type": "Age Group",
|
|
2733
|
+
"65+ years": "3.7",
|
|
2734
|
+
"18-64 years": "1.5"
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"week_end": "2023-03-11",
|
|
2738
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2739
|
+
"pathogen": "COVID-19",
|
|
2740
|
+
"demographic_type": "Age Group",
|
|
2741
|
+
"65+ years": "3.6",
|
|
2742
|
+
"18-64 years": "1.4"
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"week_end": "2023-03-11",
|
|
2746
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2747
|
+
"pathogen": "RSV",
|
|
2748
|
+
"demographic_type": "Age Group",
|
|
2749
|
+
"18-64 years": "0.0"
|
|
2750
|
+
},
|
|
2751
|
+
{
|
|
2752
|
+
"week_end": "2023-03-18",
|
|
2753
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2754
|
+
"pathogen": "Influenza",
|
|
2755
|
+
"demographic_type": "Age Group",
|
|
2756
|
+
"65+ years": "0.1"
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"week_end": "2023-03-18",
|
|
2760
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2761
|
+
"pathogen": "Combined",
|
|
2762
|
+
"demographic_type": "Age Group",
|
|
2763
|
+
"0-17 years": "1.4",
|
|
2764
|
+
"65+ years": "3.5",
|
|
2765
|
+
"18-64 years": "1.5"
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
"week_end": "2023-03-18",
|
|
2769
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2770
|
+
"pathogen": "COVID-19",
|
|
2771
|
+
"demographic_type": "Age Group",
|
|
2772
|
+
"65+ years": "3.4",
|
|
2773
|
+
"18-64 years": "1.4"
|
|
2774
|
+
},
|
|
2775
|
+
{
|
|
2776
|
+
"week_end": "2023-03-18",
|
|
2777
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2778
|
+
"pathogen": "RSV",
|
|
2779
|
+
"demographic_type": "Age Group",
|
|
2780
|
+
"18-64 years": "0.0",
|
|
2781
|
+
"0-17 years": "0.0"
|
|
2782
|
+
},
|
|
2783
|
+
{
|
|
2784
|
+
"week_end": "2023-03-25",
|
|
2785
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2786
|
+
"pathogen": "Influenza",
|
|
2787
|
+
"demographic_type": "Age Group",
|
|
2788
|
+
"65+ years": "0.1",
|
|
2789
|
+
"18-64 years": "0.1"
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"week_end": "2023-03-25",
|
|
2793
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2794
|
+
"pathogen": "Combined",
|
|
2795
|
+
"demographic_type": "Age Group",
|
|
2796
|
+
"65+ years": "3.3",
|
|
2797
|
+
"18-64 years": "1.5"
|
|
2798
|
+
},
|
|
2799
|
+
{
|
|
2800
|
+
"week_end": "2023-03-25",
|
|
2801
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2802
|
+
"pathogen": "COVID-19",
|
|
2803
|
+
"demographic_type": "Age Group",
|
|
2804
|
+
"65+ years": "3.2",
|
|
2805
|
+
"18-64 years": "1.4"
|
|
2806
|
+
},
|
|
2807
|
+
{
|
|
2808
|
+
"week_end": "2023-03-25",
|
|
2809
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2810
|
+
"pathogen": "RSV",
|
|
2811
|
+
"demographic_type": "Age Group",
|
|
2812
|
+
"0-17 years": "0.0"
|
|
2813
|
+
},
|
|
2814
|
+
{
|
|
2815
|
+
"week_end": "2023-04-01",
|
|
2816
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2817
|
+
"pathogen": "RSV",
|
|
2818
|
+
"demographic_type": "Age Group",
|
|
2819
|
+
"65+ years": "0.0",
|
|
2820
|
+
"0-17 years": "0.0"
|
|
2821
|
+
},
|
|
2822
|
+
{
|
|
2823
|
+
"week_end": "2023-04-01",
|
|
2824
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2825
|
+
"pathogen": "Influenza",
|
|
2826
|
+
"demographic_type": "Age Group",
|
|
2827
|
+
"65+ years": "0.1",
|
|
2828
|
+
"0-17 years": "0.0"
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
"week_end": "2023-04-01",
|
|
2832
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2833
|
+
"pathogen": "Combined",
|
|
2834
|
+
"demographic_type": "Age Group",
|
|
2835
|
+
"65+ years": "2.9",
|
|
2836
|
+
"18-64 years": "1.2"
|
|
2837
|
+
},
|
|
2838
|
+
{
|
|
2839
|
+
"week_end": "2023-04-01",
|
|
2840
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2841
|
+
"pathogen": "COVID-19",
|
|
2842
|
+
"demographic_type": "Age Group",
|
|
2843
|
+
"65+ years": "2.8",
|
|
2844
|
+
"18-64 years": "1.2"
|
|
2845
|
+
},
|
|
2846
|
+
{
|
|
2847
|
+
"week_end": "2023-04-08",
|
|
2848
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2849
|
+
"pathogen": "Influenza",
|
|
2850
|
+
"demographic_type": "Age Group",
|
|
2851
|
+
"65+ years": "0.1",
|
|
2852
|
+
"0-17 years": "0.0"
|
|
2853
|
+
},
|
|
2854
|
+
{
|
|
2855
|
+
"week_end": "2023-04-08",
|
|
2856
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2857
|
+
"pathogen": "Combined",
|
|
2858
|
+
"demographic_type": "Age Group",
|
|
2859
|
+
"65+ years": "2.8",
|
|
2860
|
+
"18-64 years": "1.3"
|
|
2861
|
+
},
|
|
2862
|
+
{
|
|
2863
|
+
"week_end": "2023-04-08",
|
|
2864
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2865
|
+
"pathogen": "COVID-19",
|
|
2866
|
+
"demographic_type": "Age Group",
|
|
2867
|
+
"65+ years": "2.8",
|
|
2868
|
+
"18-64 years": "1.2"
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
"week_end": "2023-04-08",
|
|
2872
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2873
|
+
"pathogen": "RSV",
|
|
2874
|
+
"demographic_type": "Age Group",
|
|
2875
|
+
"18-64 years": "0.0",
|
|
2876
|
+
"0-17 years": "0.0"
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"week_end": "2023-04-15",
|
|
2880
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2881
|
+
"pathogen": "COVID-19",
|
|
2882
|
+
"demographic_type": "Age Group",
|
|
2883
|
+
"0-17 years": "0.0",
|
|
2884
|
+
"65+ years": "2.5",
|
|
2885
|
+
"18-64 years": "1.0"
|
|
2886
|
+
},
|
|
2887
|
+
{
|
|
2888
|
+
"week_end": "2023-04-15",
|
|
2889
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2890
|
+
"pathogen": "Influenza",
|
|
2891
|
+
"demographic_type": "Age Group",
|
|
2892
|
+
"65+ years": "0.1",
|
|
2893
|
+
"18-64 years": "0.1"
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
"week_end": "2023-04-15",
|
|
2897
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2898
|
+
"pathogen": "Combined",
|
|
2899
|
+
"demographic_type": "Age Group",
|
|
2900
|
+
"65+ years": "2.5",
|
|
2901
|
+
"18-64 years": "1.1"
|
|
2902
|
+
},
|
|
2903
|
+
{
|
|
2904
|
+
"week_end": "2023-04-15",
|
|
2905
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2906
|
+
"pathogen": "RSV",
|
|
2907
|
+
"demographic_type": "Age Group",
|
|
2908
|
+
"0-17 years": "0.0"
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"week_end": "2023-04-22",
|
|
2912
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2913
|
+
"pathogen": "RSV",
|
|
2914
|
+
"demographic_type": "Age Group",
|
|
2915
|
+
"65+ years": "0.0",
|
|
2916
|
+
"18-64 years": "0.0",
|
|
2917
|
+
"0-17 years": "0.0"
|
|
2918
|
+
},
|
|
2919
|
+
{
|
|
2920
|
+
"week_end": "2023-04-22",
|
|
2921
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2922
|
+
"pathogen": "Influenza",
|
|
2923
|
+
"demographic_type": "Age Group",
|
|
2924
|
+
"65+ years": "0.1",
|
|
2925
|
+
"0-17 years": "0.0"
|
|
2926
|
+
},
|
|
2927
|
+
{
|
|
2928
|
+
"week_end": "2023-04-22",
|
|
2929
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2930
|
+
"pathogen": "Combined",
|
|
2931
|
+
"demographic_type": "Age Group",
|
|
2932
|
+
"65+ years": "2.5",
|
|
2933
|
+
"18-64 years": "1.0"
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"week_end": "2023-04-22",
|
|
2937
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2938
|
+
"pathogen": "COVID-19",
|
|
2939
|
+
"demographic_type": "Age Group",
|
|
2940
|
+
"65+ years": "2.4",
|
|
2941
|
+
"18-64 years": "1.0"
|
|
2942
|
+
},
|
|
2943
|
+
{
|
|
2944
|
+
"week_end": "2023-04-29",
|
|
2945
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2946
|
+
"pathogen": "Influenza",
|
|
2947
|
+
"demographic_type": "Age Group",
|
|
2948
|
+
"65+ years": "0.1"
|
|
2949
|
+
},
|
|
2950
|
+
{
|
|
2951
|
+
"week_end": "2023-04-29",
|
|
2952
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2953
|
+
"pathogen": "Combined",
|
|
2954
|
+
"demographic_type": "Age Group",
|
|
2955
|
+
"65+ years": "2.2",
|
|
2956
|
+
"18-64 years": "0.9"
|
|
2957
|
+
},
|
|
2958
|
+
{
|
|
2959
|
+
"week_end": "2023-04-29",
|
|
2960
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2961
|
+
"pathogen": "COVID-19",
|
|
2962
|
+
"demographic_type": "Age Group",
|
|
2963
|
+
"65+ years": "2.1",
|
|
2964
|
+
"18-64 years": "0.9"
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"week_end": "2023-04-29",
|
|
2968
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2969
|
+
"pathogen": "RSV",
|
|
2970
|
+
"demographic_type": "Age Group",
|
|
2971
|
+
"18-64 years": "0.0",
|
|
2972
|
+
"0-17 years": "0.0"
|
|
2973
|
+
},
|
|
2974
|
+
{
|
|
2975
|
+
"week_end": "2023-05-06",
|
|
2976
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2977
|
+
"pathogen": "Influenza",
|
|
2978
|
+
"demographic_type": "Age Group",
|
|
2979
|
+
"65+ years": "0.0",
|
|
2980
|
+
"0-17 years": "0.0",
|
|
2981
|
+
"18-64 years": "0.1"
|
|
2982
|
+
},
|
|
2983
|
+
{
|
|
2984
|
+
"week_end": "2023-05-06",
|
|
2985
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2986
|
+
"pathogen": "Combined",
|
|
2987
|
+
"demographic_type": "Age Group",
|
|
2988
|
+
"65+ years": "2.0",
|
|
2989
|
+
"18-64 years": "0.9"
|
|
2990
|
+
},
|
|
2991
|
+
{
|
|
2992
|
+
"week_end": "2023-05-06",
|
|
2993
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
2994
|
+
"pathogen": "COVID-19",
|
|
2995
|
+
"demographic_type": "Age Group",
|
|
2996
|
+
"65+ years": "1.9",
|
|
2997
|
+
"18-64 years": "0.8"
|
|
2998
|
+
},
|
|
2999
|
+
{
|
|
3000
|
+
"week_end": "2023-05-06",
|
|
3001
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3002
|
+
"pathogen": "RSV",
|
|
3003
|
+
"demographic_type": "Age Group",
|
|
3004
|
+
"0-17 years": "0.0"
|
|
3005
|
+
},
|
|
3006
|
+
{
|
|
3007
|
+
"week_end": "2023-05-13",
|
|
3008
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3009
|
+
"pathogen": "Influenza",
|
|
3010
|
+
"demographic_type": "Age Group",
|
|
3011
|
+
"65+ years": "0.1"
|
|
3012
|
+
},
|
|
3013
|
+
{
|
|
3014
|
+
"week_end": "2023-05-13",
|
|
3015
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3016
|
+
"pathogen": "Combined",
|
|
3017
|
+
"demographic_type": "Age Group",
|
|
3018
|
+
"65+ years": "1.8",
|
|
3019
|
+
"18-64 years": "0.8"
|
|
3020
|
+
},
|
|
3021
|
+
{
|
|
3022
|
+
"week_end": "2023-05-13",
|
|
3023
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3024
|
+
"pathogen": "COVID-19",
|
|
3025
|
+
"demographic_type": "Age Group",
|
|
3026
|
+
"65+ years": "1.7",
|
|
3027
|
+
"18-64 years": "0.8"
|
|
3028
|
+
},
|
|
3029
|
+
{
|
|
3030
|
+
"week_end": "2023-05-13",
|
|
3031
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3032
|
+
"pathogen": "RSV",
|
|
3033
|
+
"demographic_type": "Age Group",
|
|
3034
|
+
"18-64 years": "0.0",
|
|
3035
|
+
"0-17 years": "0.0"
|
|
3036
|
+
},
|
|
3037
|
+
{
|
|
3038
|
+
"week_end": "2023-05-20",
|
|
3039
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3040
|
+
"pathogen": "RSV",
|
|
3041
|
+
"demographic_type": "Age Group",
|
|
3042
|
+
"65+ years": "0.0",
|
|
3043
|
+
"18-64 years": "0.0"
|
|
3044
|
+
},
|
|
3045
|
+
{
|
|
3046
|
+
"week_end": "2023-05-20",
|
|
3047
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3048
|
+
"pathogen": "Influenza",
|
|
3049
|
+
"demographic_type": "Age Group",
|
|
3050
|
+
"65+ years": "0.1",
|
|
3051
|
+
"0-17 years": "0.0"
|
|
3052
|
+
},
|
|
3053
|
+
{
|
|
3054
|
+
"week_end": "2023-05-20",
|
|
3055
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3056
|
+
"pathogen": "Combined",
|
|
3057
|
+
"demographic_type": "Age Group",
|
|
3058
|
+
"65+ years": "1.7",
|
|
3059
|
+
"18-64 years": "0.6"
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
"week_end": "2023-05-20",
|
|
3063
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3064
|
+
"pathogen": "COVID-19",
|
|
3065
|
+
"demographic_type": "Age Group",
|
|
3066
|
+
"65+ years": "1.6",
|
|
3067
|
+
"18-64 years": "0.6"
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"week_end": "2023-05-27",
|
|
3071
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3072
|
+
"pathogen": "Influenza",
|
|
3073
|
+
"demographic_type": "Age Group",
|
|
3074
|
+
"65+ years": "0.1"
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
"week_end": "2023-05-27",
|
|
3078
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3079
|
+
"pathogen": "Combined",
|
|
3080
|
+
"demographic_type": "Age Group",
|
|
3081
|
+
"65+ years": "1.6",
|
|
3082
|
+
"18-64 years": "0.8"
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"week_end": "2023-05-27",
|
|
3086
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3087
|
+
"pathogen": "COVID-19",
|
|
3088
|
+
"demographic_type": "Age Group",
|
|
3089
|
+
"65+ years": "1.6",
|
|
3090
|
+
"18-64 years": "0.7"
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"week_end": "2023-05-27",
|
|
3094
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3095
|
+
"pathogen": "RSV",
|
|
3096
|
+
"demographic_type": "Age Group",
|
|
3097
|
+
"18-64 years": "0.0"
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
"week_end": "2023-06-03",
|
|
3101
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3102
|
+
"pathogen": "Influenza",
|
|
3103
|
+
"demographic_type": "Age Group",
|
|
3104
|
+
"65+ years": "0.1"
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
"week_end": "2023-06-03",
|
|
3108
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3109
|
+
"pathogen": "Combined",
|
|
3110
|
+
"demographic_type": "Age Group",
|
|
3111
|
+
"65+ years": "1.5",
|
|
3112
|
+
"18-64 years": "0.7"
|
|
3113
|
+
},
|
|
3114
|
+
{
|
|
3115
|
+
"week_end": "2023-06-03",
|
|
3116
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3117
|
+
"pathogen": "COVID-19",
|
|
3118
|
+
"demographic_type": "Age Group",
|
|
3119
|
+
"65+ years": "1.4",
|
|
3120
|
+
"18-64 years": "0.7"
|
|
3121
|
+
},
|
|
3122
|
+
{
|
|
3123
|
+
"week_end": "2023-06-03",
|
|
3124
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3125
|
+
"pathogen": "RSV",
|
|
3126
|
+
"demographic_type": "Age Group",
|
|
3127
|
+
"18-64 years": "0.0"
|
|
3128
|
+
},
|
|
3129
|
+
{
|
|
3130
|
+
"week_end": "2023-06-10",
|
|
3131
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3132
|
+
"pathogen": "RSV",
|
|
3133
|
+
"demographic_type": "Age Group",
|
|
3134
|
+
"65+ years": "0.0",
|
|
3135
|
+
"0-17 years": "0.0"
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
"week_end": "2023-06-10",
|
|
3139
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3140
|
+
"pathogen": "Influenza",
|
|
3141
|
+
"demographic_type": "Age Group",
|
|
3142
|
+
"65+ years": "0.0"
|
|
3143
|
+
},
|
|
3144
|
+
{
|
|
3145
|
+
"week_end": "2023-06-10",
|
|
3146
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3147
|
+
"pathogen": "Combined",
|
|
3148
|
+
"demographic_type": "Age Group",
|
|
3149
|
+
"65+ years": "1.4",
|
|
3150
|
+
"18-64 years": "0.7"
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"week_end": "2023-06-10",
|
|
3154
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3155
|
+
"pathogen": "COVID-19",
|
|
3156
|
+
"demographic_type": "Age Group",
|
|
3157
|
+
"65+ years": "1.3",
|
|
3158
|
+
"18-64 years": "0.7"
|
|
3159
|
+
},
|
|
3160
|
+
{
|
|
3161
|
+
"week_end": "2023-06-17",
|
|
3162
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3163
|
+
"pathogen": "Influenza",
|
|
3164
|
+
"demographic_type": "Age Group",
|
|
3165
|
+
"65+ years": "0.1"
|
|
3166
|
+
},
|
|
3167
|
+
{
|
|
3168
|
+
"week_end": "2023-06-17",
|
|
3169
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3170
|
+
"pathogen": "Combined",
|
|
3171
|
+
"demographic_type": "Age Group",
|
|
3172
|
+
"65+ years": "1.4",
|
|
3173
|
+
"18-64 years": "0.5"
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
"week_end": "2023-06-17",
|
|
3177
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3178
|
+
"pathogen": "COVID-19",
|
|
3179
|
+
"demographic_type": "Age Group",
|
|
3180
|
+
"65+ years": "1.3",
|
|
3181
|
+
"18-64 years": "0.5"
|
|
3182
|
+
},
|
|
3183
|
+
{
|
|
3184
|
+
"week_end": "2023-06-17",
|
|
3185
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3186
|
+
"pathogen": "RSV",
|
|
3187
|
+
"demographic_type": "Age Group",
|
|
3188
|
+
"18-64 years": "0.0",
|
|
3189
|
+
"0-17 years": "0.0"
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
"week_end": "2023-06-24",
|
|
3193
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3194
|
+
"pathogen": "COVID-19",
|
|
3195
|
+
"demographic_type": "Age Group",
|
|
3196
|
+
"0-17 years": "0.0",
|
|
3197
|
+
"65+ years": "1.3",
|
|
3198
|
+
"18-64 years": "0.4"
|
|
3199
|
+
},
|
|
3200
|
+
{
|
|
3201
|
+
"week_end": "2023-06-24",
|
|
3202
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3203
|
+
"pathogen": "Influenza",
|
|
3204
|
+
"demographic_type": "Age Group",
|
|
3205
|
+
"65+ years": "0.1"
|
|
3206
|
+
},
|
|
3207
|
+
{
|
|
3208
|
+
"week_end": "2023-06-24",
|
|
3209
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3210
|
+
"pathogen": "Combined",
|
|
3211
|
+
"demographic_type": "Age Group",
|
|
3212
|
+
"65+ years": "1.3",
|
|
3213
|
+
"18-64 years": "0.5"
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"week_end": "2023-06-24",
|
|
3217
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3218
|
+
"pathogen": "RSV",
|
|
3219
|
+
"demographic_type": "Age Group",
|
|
3220
|
+
"18-64 years": "0.0",
|
|
3221
|
+
"0-17 years": "0.0"
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
"week_end": "2023-07-01",
|
|
3225
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3226
|
+
"pathogen": "Influenza",
|
|
3227
|
+
"demographic_type": "Age Group",
|
|
3228
|
+
"65+ years": "0.0"
|
|
3229
|
+
},
|
|
3230
|
+
{
|
|
3231
|
+
"week_end": "2023-07-01",
|
|
3232
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3233
|
+
"pathogen": "Combined",
|
|
3234
|
+
"demographic_type": "Age Group",
|
|
3235
|
+
"65+ years": "1.2",
|
|
3236
|
+
"18-64 years": "0.5"
|
|
3237
|
+
},
|
|
3238
|
+
{
|
|
3239
|
+
"week_end": "2023-07-01",
|
|
3240
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3241
|
+
"pathogen": "COVID-19",
|
|
3242
|
+
"demographic_type": "Age Group",
|
|
3243
|
+
"65+ years": "1.2",
|
|
3244
|
+
"18-64 years": "0.5"
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"week_end": "2023-07-01",
|
|
3248
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3249
|
+
"pathogen": "RSV",
|
|
3250
|
+
"demographic_type": "Age Group",
|
|
3251
|
+
"18-64 years": "0.0",
|
|
3252
|
+
"0-17 years": "0.0"
|
|
3253
|
+
},
|
|
3254
|
+
{
|
|
3255
|
+
"week_end": "2023-07-08",
|
|
3256
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3257
|
+
"pathogen": "COVID-19",
|
|
3258
|
+
"demographic_type": "Age Group",
|
|
3259
|
+
"0-17 years": "0.0",
|
|
3260
|
+
"65+ years": "1.0",
|
|
3261
|
+
"18-64 years": "0.4"
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
"week_end": "2023-07-08",
|
|
3265
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3266
|
+
"pathogen": "RSV",
|
|
3267
|
+
"demographic_type": "Age Group",
|
|
3268
|
+
"65+ years": "0.0",
|
|
3269
|
+
"18-64 years": "0.0",
|
|
3270
|
+
"0-17 years": "0.0"
|
|
3271
|
+
},
|
|
3272
|
+
{
|
|
3273
|
+
"week_end": "2023-07-08",
|
|
3274
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3275
|
+
"pathogen": "Influenza",
|
|
3276
|
+
"demographic_type": "Age Group",
|
|
3277
|
+
"65+ years": "0.1"
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"week_end": "2023-07-08",
|
|
3281
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3282
|
+
"pathogen": "Combined",
|
|
3283
|
+
"demographic_type": "Age Group",
|
|
3284
|
+
"65+ years": "1.1",
|
|
3285
|
+
"18-64 years": "0.5"
|
|
3286
|
+
},
|
|
3287
|
+
{
|
|
3288
|
+
"week_end": "2023-07-15",
|
|
3289
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3290
|
+
"pathogen": "RSV",
|
|
3291
|
+
"demographic_type": "Age Group",
|
|
3292
|
+
"65+ years": "0.0",
|
|
3293
|
+
"18-64 years": "0.0",
|
|
3294
|
+
"0-17 years": "0.0"
|
|
3295
|
+
},
|
|
3296
|
+
{
|
|
3297
|
+
"week_end": "2023-07-15",
|
|
3298
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3299
|
+
"pathogen": "Influenza",
|
|
3300
|
+
"demographic_type": "Age Group",
|
|
3301
|
+
"65+ years": "0.0"
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"week_end": "2023-07-15",
|
|
3305
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3306
|
+
"pathogen": "Combined",
|
|
3307
|
+
"demographic_type": "Age Group",
|
|
3308
|
+
"65+ years": "1.1",
|
|
3309
|
+
"18-64 years": "0.6"
|
|
3310
|
+
},
|
|
3311
|
+
{
|
|
3312
|
+
"week_end": "2023-07-15",
|
|
3313
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3314
|
+
"pathogen": "COVID-19",
|
|
3315
|
+
"demographic_type": "Age Group",
|
|
3316
|
+
"65+ years": "1.1",
|
|
3317
|
+
"18-64 years": "0.5"
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
"week_end": "2023-07-22",
|
|
3321
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3322
|
+
"pathogen": "COVID-19",
|
|
3323
|
+
"demographic_type": "Age Group",
|
|
3324
|
+
"0-17 years": "0.0",
|
|
3325
|
+
"65+ years": "1.2",
|
|
3326
|
+
"18-64 years": "0.5"
|
|
3327
|
+
},
|
|
3328
|
+
{
|
|
3329
|
+
"week_end": "2023-07-22",
|
|
3330
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3331
|
+
"pathogen": "Influenza",
|
|
3332
|
+
"demographic_type": "Age Group",
|
|
3333
|
+
"65+ years": "0.0",
|
|
3334
|
+
"0-17 years": "0.0"
|
|
3335
|
+
},
|
|
3336
|
+
{
|
|
3337
|
+
"week_end": "2023-07-22",
|
|
3338
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3339
|
+
"pathogen": "Combined",
|
|
3340
|
+
"demographic_type": "Age Group",
|
|
3341
|
+
"0-17 years": "0.0",
|
|
3342
|
+
"65+ years": "1.2",
|
|
3343
|
+
"18-64 years": "0.5"
|
|
3344
|
+
},
|
|
3345
|
+
{
|
|
3346
|
+
"week_end": "2023-07-22",
|
|
3347
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3348
|
+
"pathogen": "RSV",
|
|
3349
|
+
"demographic_type": "Age Group",
|
|
3350
|
+
"18-64 years": "0.0",
|
|
3351
|
+
"0-17 years": "0.0"
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"week_end": "2023-07-29",
|
|
3355
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3356
|
+
"pathogen": "RSV",
|
|
3357
|
+
"demographic_type": "Age Group",
|
|
3358
|
+
"65+ years": "0.0",
|
|
3359
|
+
"18-64 years": "0.0",
|
|
3360
|
+
"0-17 years": "0.0"
|
|
3361
|
+
},
|
|
3362
|
+
{
|
|
3363
|
+
"week_end": "2023-07-29",
|
|
3364
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3365
|
+
"pathogen": "Influenza",
|
|
3366
|
+
"demographic_type": "Age Group",
|
|
3367
|
+
"0-17 years": "0.0"
|
|
3368
|
+
},
|
|
3369
|
+
{
|
|
3370
|
+
"week_end": "2023-07-29",
|
|
3371
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3372
|
+
"pathogen": "Combined",
|
|
3373
|
+
"demographic_type": "Age Group",
|
|
3374
|
+
"65+ years": "1.2",
|
|
3375
|
+
"18-64 years": "0.4"
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
"week_end": "2023-07-29",
|
|
3379
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3380
|
+
"pathogen": "COVID-19",
|
|
3381
|
+
"demographic_type": "Age Group",
|
|
3382
|
+
"65+ years": "1.2",
|
|
3383
|
+
"18-64 years": "0.4"
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"week_end": "2023-08-05",
|
|
3387
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3388
|
+
"pathogen": "RSV",
|
|
3389
|
+
"demographic_type": "Age Group",
|
|
3390
|
+
"65+ years": "0.0",
|
|
3391
|
+
"18-64 years": "0.0",
|
|
3392
|
+
"0-17 years": "0.0"
|
|
3393
|
+
},
|
|
3394
|
+
{
|
|
3395
|
+
"week_end": "2023-08-05",
|
|
3396
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3397
|
+
"pathogen": "Influenza",
|
|
3398
|
+
"demographic_type": "Age Group",
|
|
3399
|
+
"65+ years": "0.0",
|
|
3400
|
+
"0-17 years": "0.0"
|
|
3401
|
+
},
|
|
3402
|
+
{
|
|
3403
|
+
"week_end": "2023-08-05",
|
|
3404
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3405
|
+
"pathogen": "Combined",
|
|
3406
|
+
"demographic_type": "Age Group",
|
|
3407
|
+
"65+ years": "1.5",
|
|
3408
|
+
"18-64 years": "0.5"
|
|
3409
|
+
},
|
|
3410
|
+
{
|
|
3411
|
+
"week_end": "2023-08-05",
|
|
3412
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3413
|
+
"pathogen": "COVID-19",
|
|
3414
|
+
"demographic_type": "Age Group",
|
|
3415
|
+
"65+ years": "1.5",
|
|
3416
|
+
"18-64 years": "0.4"
|
|
3417
|
+
},
|
|
3418
|
+
{
|
|
3419
|
+
"week_end": "2023-08-12",
|
|
3420
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3421
|
+
"pathogen": "Influenza",
|
|
3422
|
+
"demographic_type": "Age Group",
|
|
3423
|
+
"65+ years": "0.0",
|
|
3424
|
+
"0-17 years": "0.0"
|
|
3425
|
+
},
|
|
3426
|
+
{
|
|
3427
|
+
"week_end": "2023-08-12",
|
|
3428
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3429
|
+
"pathogen": "Combined",
|
|
3430
|
+
"demographic_type": "Age Group",
|
|
3431
|
+
"65+ years": "1.6",
|
|
3432
|
+
"18-64 years": "0.8"
|
|
3433
|
+
},
|
|
3434
|
+
{
|
|
3435
|
+
"week_end": "2023-08-12",
|
|
3436
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3437
|
+
"pathogen": "COVID-19",
|
|
3438
|
+
"demographic_type": "Age Group",
|
|
3439
|
+
"65+ years": "1.5",
|
|
3440
|
+
"18-64 years": "0.7"
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"week_end": "2023-08-12",
|
|
3444
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3445
|
+
"pathogen": "RSV",
|
|
3446
|
+
"demographic_type": "Age Group",
|
|
3447
|
+
"18-64 years": "0.0",
|
|
3448
|
+
"0-17 years": "0.0"
|
|
3449
|
+
},
|
|
3450
|
+
{
|
|
3451
|
+
"week_end": "2023-08-19",
|
|
3452
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3453
|
+
"pathogen": "RSV",
|
|
3454
|
+
"demographic_type": "Age Group",
|
|
3455
|
+
"65+ years": "0.0",
|
|
3456
|
+
"0-17 years": "0.0"
|
|
3457
|
+
},
|
|
3458
|
+
{
|
|
3459
|
+
"week_end": "2023-08-19",
|
|
3460
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3461
|
+
"pathogen": "Influenza",
|
|
3462
|
+
"demographic_type": "Age Group",
|
|
3463
|
+
"65+ years": "0.0",
|
|
3464
|
+
"0-17 years": "0.0"
|
|
3465
|
+
},
|
|
3466
|
+
{
|
|
3467
|
+
"week_end": "2023-08-19",
|
|
3468
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3469
|
+
"pathogen": "Combined",
|
|
3470
|
+
"demographic_type": "Age Group",
|
|
3471
|
+
"65+ years": "1.9",
|
|
3472
|
+
"18-64 years": "0.9"
|
|
3473
|
+
},
|
|
3474
|
+
{
|
|
3475
|
+
"week_end": "2023-08-19",
|
|
3476
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3477
|
+
"pathogen": "COVID-19",
|
|
3478
|
+
"demographic_type": "Age Group",
|
|
3479
|
+
"65+ years": "1.9",
|
|
3480
|
+
"18-64 years": "0.8"
|
|
3481
|
+
},
|
|
3482
|
+
{
|
|
3483
|
+
"week_end": "2023-08-26",
|
|
3484
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3485
|
+
"pathogen": "RSV",
|
|
3486
|
+
"demographic_type": "Age Group",
|
|
3487
|
+
"65+ years": "0.0",
|
|
3488
|
+
"18-64 years": "0.0",
|
|
3489
|
+
"0-17 years": "0.0"
|
|
3490
|
+
},
|
|
3491
|
+
{
|
|
3492
|
+
"week_end": "2023-08-26",
|
|
3493
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3494
|
+
"pathogen": "Influenza",
|
|
3495
|
+
"demographic_type": "Age Group",
|
|
3496
|
+
"65+ years": "0.0",
|
|
3497
|
+
"0-17 years": "0.0"
|
|
3498
|
+
},
|
|
3499
|
+
{
|
|
3500
|
+
"week_end": "2023-08-26",
|
|
3501
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3502
|
+
"pathogen": "Combined",
|
|
3503
|
+
"demographic_type": "Age Group",
|
|
3504
|
+
"65+ years": "2.3",
|
|
3505
|
+
"18-64 years": "0.9"
|
|
3506
|
+
},
|
|
3507
|
+
{
|
|
3508
|
+
"week_end": "2023-08-26",
|
|
3509
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3510
|
+
"pathogen": "COVID-19",
|
|
3511
|
+
"demographic_type": "Age Group",
|
|
3512
|
+
"65+ years": "2.2",
|
|
3513
|
+
"18-64 years": "0.9"
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"week_end": "2023-09-02",
|
|
3517
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3518
|
+
"pathogen": "Influenza",
|
|
3519
|
+
"demographic_type": "Age Group",
|
|
3520
|
+
"65+ years": "0.0",
|
|
3521
|
+
"0-17 years": "0.0"
|
|
3522
|
+
},
|
|
3523
|
+
{
|
|
3524
|
+
"week_end": "2023-09-02",
|
|
3525
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3526
|
+
"pathogen": "Combined",
|
|
3527
|
+
"demographic_type": "Age Group",
|
|
3528
|
+
"65+ years": "2.5",
|
|
3529
|
+
"18-64 years": "0.9"
|
|
3530
|
+
},
|
|
3531
|
+
{
|
|
3532
|
+
"week_end": "2023-09-02",
|
|
3533
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3534
|
+
"pathogen": "COVID-19",
|
|
3535
|
+
"demographic_type": "Age Group",
|
|
3536
|
+
"65+ years": "2.5",
|
|
3537
|
+
"18-64 years": "0.9"
|
|
3538
|
+
},
|
|
3539
|
+
{
|
|
3540
|
+
"week_end": "2023-09-02",
|
|
3541
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3542
|
+
"pathogen": "RSV",
|
|
3543
|
+
"demographic_type": "Age Group",
|
|
3544
|
+
"18-64 years": "0.0",
|
|
3545
|
+
"0-17 years": "0.0"
|
|
3546
|
+
},
|
|
3547
|
+
{
|
|
3548
|
+
"week_end": "2023-09-09",
|
|
3549
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3550
|
+
"pathogen": "Influenza",
|
|
3551
|
+
"demographic_type": "Age Group",
|
|
3552
|
+
"65+ years": "0.1",
|
|
3553
|
+
"0-17 years": "0.0"
|
|
3554
|
+
},
|
|
3555
|
+
{
|
|
3556
|
+
"week_end": "2023-09-09",
|
|
3557
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3558
|
+
"pathogen": "Combined",
|
|
3559
|
+
"demographic_type": "Age Group",
|
|
3560
|
+
"65+ years": "2.7",
|
|
3561
|
+
"18-64 years": "1.2"
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
"week_end": "2023-09-09",
|
|
3565
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3566
|
+
"pathogen": "COVID-19",
|
|
3567
|
+
"demographic_type": "Age Group",
|
|
3568
|
+
"65+ years": "2.7",
|
|
3569
|
+
"18-64 years": "1.1"
|
|
3570
|
+
},
|
|
3571
|
+
{
|
|
3572
|
+
"week_end": "2023-09-09",
|
|
3573
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3574
|
+
"pathogen": "RSV",
|
|
3575
|
+
"demographic_type": "Age Group",
|
|
3576
|
+
"0-17 years": "0.0"
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"week_end": "2023-09-16",
|
|
3580
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3581
|
+
"pathogen": "Influenza",
|
|
3582
|
+
"demographic_type": "Age Group",
|
|
3583
|
+
"65+ years": "0.1",
|
|
3584
|
+
"18-64 years": "0.1"
|
|
3585
|
+
},
|
|
3586
|
+
{
|
|
3587
|
+
"week_end": "2023-09-16",
|
|
3588
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3589
|
+
"pathogen": "Combined",
|
|
3590
|
+
"demographic_type": "Age Group",
|
|
3591
|
+
"65+ years": "3.0",
|
|
3592
|
+
"18-64 years": "1.2"
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
"week_end": "2023-09-16",
|
|
3596
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3597
|
+
"pathogen": "COVID-19",
|
|
3598
|
+
"demographic_type": "Age Group",
|
|
3599
|
+
"65+ years": "2.9",
|
|
3600
|
+
"18-64 years": "1.1"
|
|
3601
|
+
},
|
|
3602
|
+
{
|
|
3603
|
+
"week_end": "2023-09-16",
|
|
3604
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3605
|
+
"pathogen": "RSV",
|
|
3606
|
+
"demographic_type": "Age Group",
|
|
3607
|
+
"18-64 years": "0.0",
|
|
3608
|
+
"0-17 years": "0.0"
|
|
3609
|
+
},
|
|
3610
|
+
{
|
|
3611
|
+
"week_end": "2023-09-23",
|
|
3612
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3613
|
+
"pathogen": "Influenza",
|
|
3614
|
+
"demographic_type": "Age Group",
|
|
3615
|
+
"65+ years": "0.0"
|
|
3616
|
+
},
|
|
3617
|
+
{
|
|
3618
|
+
"week_end": "2023-09-23",
|
|
3619
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3620
|
+
"pathogen": "Combined",
|
|
3621
|
+
"demographic_type": "Age Group",
|
|
3622
|
+
"65+ years": "3.0",
|
|
3623
|
+
"18-64 years": "1.3"
|
|
3624
|
+
},
|
|
3625
|
+
{
|
|
3626
|
+
"week_end": "2023-09-23",
|
|
3627
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3628
|
+
"pathogen": "COVID-19",
|
|
3629
|
+
"demographic_type": "Age Group",
|
|
3630
|
+
"65+ years": "2.9",
|
|
3631
|
+
"18-64 years": "1.2"
|
|
3632
|
+
},
|
|
3633
|
+
{
|
|
3634
|
+
"week_end": "2023-09-23",
|
|
3635
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3636
|
+
"pathogen": "RSV",
|
|
3637
|
+
"demographic_type": "Age Group",
|
|
3638
|
+
"18-64 years": "0.0",
|
|
3639
|
+
"0-17 years": "0.0"
|
|
3640
|
+
},
|
|
3641
|
+
{
|
|
3642
|
+
"week_end": "2023-09-30",
|
|
3643
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3644
|
+
"pathogen": "Influenza",
|
|
3645
|
+
"demographic_type": "Age Group",
|
|
3646
|
+
"65+ years": "0.0",
|
|
3647
|
+
"0-17 years": "0.0"
|
|
3648
|
+
},
|
|
3649
|
+
{
|
|
3650
|
+
"week_end": "2023-09-30",
|
|
3651
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3652
|
+
"pathogen": "Combined",
|
|
3653
|
+
"demographic_type": "Age Group",
|
|
3654
|
+
"65+ years": "3.1",
|
|
3655
|
+
"18-64 years": "1.3"
|
|
3656
|
+
},
|
|
3657
|
+
{
|
|
3658
|
+
"week_end": "2023-09-30",
|
|
3659
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3660
|
+
"pathogen": "COVID-19",
|
|
3661
|
+
"demographic_type": "Age Group",
|
|
3662
|
+
"65+ years": "3.0",
|
|
3663
|
+
"18-64 years": "1.2"
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"week_end": "2023-09-30",
|
|
3667
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3668
|
+
"pathogen": "RSV",
|
|
3669
|
+
"demographic_type": "Age Group",
|
|
3670
|
+
"18-64 years": "0.0",
|
|
3671
|
+
"0-17 years": "0.0"
|
|
3672
|
+
},
|
|
3673
|
+
{
|
|
3674
|
+
"week_end": "2023-10-07",
|
|
3675
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3676
|
+
"pathogen": "COVID-19",
|
|
3677
|
+
"demographic_type": "Age Group",
|
|
3678
|
+
"0-17 years": "0.0",
|
|
3679
|
+
"65+ years": "2.8",
|
|
3680
|
+
"18-64 years": "1.1"
|
|
3681
|
+
},
|
|
3682
|
+
{
|
|
3683
|
+
"week_end": "2023-10-07",
|
|
3684
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3685
|
+
"pathogen": "RSV",
|
|
3686
|
+
"demographic_type": "Age Group",
|
|
3687
|
+
"65+ years": "0.0",
|
|
3688
|
+
"18-64 years": "0.0",
|
|
3689
|
+
"0-17 years": "0.0"
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
"week_end": "2023-10-07",
|
|
3693
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3694
|
+
"pathogen": "Influenza",
|
|
3695
|
+
"demographic_type": "Age Group",
|
|
3696
|
+
"65+ years": "0.0",
|
|
3697
|
+
"0-17 years": "0.0"
|
|
3698
|
+
},
|
|
3699
|
+
{
|
|
3700
|
+
"week_end": "2023-10-07",
|
|
3701
|
+
"**Numeric Value Property**": "percent_deaths_currentweek",
|
|
3702
|
+
"pathogen": "Combined",
|
|
3703
|
+
"demographic_type": "Age Group",
|
|
3704
|
+
"0-17 years": "0.0",
|
|
3705
|
+
"65+ years": "2.8",
|
|
3706
|
+
"18-64 years": "1.2"
|
|
3707
|
+
}
|
|
3708
|
+
],
|
|
3709
|
+
"dataDescription": {
|
|
3710
|
+
"horizontal": false,
|
|
3711
|
+
"series": true,
|
|
3712
|
+
"singleRow": false,
|
|
3713
|
+
"seriesKey": "demographic_values",
|
|
3714
|
+
"xKey": "week_end",
|
|
3715
|
+
"valueKeys": [
|
|
3716
|
+
"percent_deaths_currentweek"
|
|
3717
|
+
]
|
|
3718
|
+
},
|
|
3719
|
+
"validated": 4.23,
|
|
3720
|
+
"filters": [
|
|
3721
|
+
{
|
|
3722
|
+
"values": [
|
|
3723
|
+
"Combined",
|
|
3724
|
+
"COVID-19",
|
|
3725
|
+
"Influenza",
|
|
3726
|
+
"RSV"
|
|
3727
|
+
],
|
|
3728
|
+
"active": "Combined",
|
|
3729
|
+
"filterStyle": "dropdown",
|
|
3730
|
+
"columnName": "pathogen",
|
|
3731
|
+
"order": "asc",
|
|
3732
|
+
"label": "Respiratory Illness"
|
|
3733
|
+
}
|
|
3734
|
+
],
|
|
3735
|
+
"runtimeDataUrl": "https://www.cdc.gov/wcms/vizdata/live/Respitory_Viruses/RVRMortalityWithDemographic(Age).json",
|
|
3736
|
+
"dynamicMarginTop": 0,
|
|
3737
|
+
"dataUrl": "https://www.cdc.gov/wcms/vizdata/live/Respitory_Viruses/RVRMortalityWithDemographic(Age).json",
|
|
3738
|
+
"description": "<div class=\"text-left\">One or more data points are based on death counts between 1-9 and have been suppressed in accordance with National Center for Health Statistics confidentiality standards.\n<br/><br/>\nData presented through: 10/07/23; Data as of: 10/17/23\n</div>\n<a href=\"https://data.cdc.gov/dataset/Provisional-Percent-of-Deaths-for-COVID-19-Influen/53g5-jf7x/\">Dataset on data.cdc.gov</a> | <a href=\"https://www.cdc.gov/wcms/vizdata/live/Respitory_Viruses/RVRMortalityWithDemographic(Age).json\">Link to Dataset</a> ",
|
|
3739
|
+
"footnotes": ""
|
|
3740
|
+
}
|